//
// Zoom...
//
function zoom_pdfs(id) {
	var X = screen.width - 300;
	var Y = screen.height - 200;
	var Left = (screen.width	- X) / 2;
	var Top  = (screen.height	- Y) / 2 - 50;

	the_URL = "http://www.primiweb.com/siteweb-pdfs-show.php?id_pdf=" + id;
	var fen = window.open(the_URL,"zoom_pdf","toolbar=no,status=no,location=no,resizable=yes,scrollbars=yes,copyhistory=0,menubar=no,width=" + X + ",height=" + Y + ",left=" + Left + ",top=" + Top);
	fen.focus();
}
//////////////////////////////////////////////////