// JavaScript Document

function showproduct($a) {
	//
	// alert("hi"+$a);
	//
	window.open("second-hand-machines.php?productid="+$a,"_self");
	//
}

function printpage() {
	//
	window.print();  
	//
}

function showenlarge($a){
	//
	//	alert("hi "+$a);
	//
	myWin=window.open("","_new","width=730,height=516,status=no,toolbar=no,menubar=no");
	// create document	
	myWin.document.write("<html><head><title>Langver Product Enlargement</title></head>");
	myWin.document.write("<body>");
	//
	myWin.document.write("<div style='border: 1px solid #BED3EF;' onclick='javascript:window.close();'>");
	myWin.document.write("<img style='' src='"+ $a +"/"+ $a +"-large.jpg' alt='click to close' />");
	myWin.document.write("<br /><div style='text-align:right;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10;padding-right:6px;padding-bottom:6px;color:#666666'>Close window&nbsp;");
	myWin.document.write("<img src='../images/close.gif' alt='Click to close' border='0' />&nbsp;</div>");
	myWin.document.write("</div>");
	//
	myWin.document.write("</body></html>");
	// close the document - (not the window!)
	myWin.document.close();
	//
	//
}