function Clickheretoprint(lang)
{
var disp_setting="toolbar=no,location=no,directories=no,menubar=no,";
    disp_setting+="scrollbars=yes, width=735,height=500, left=100, top=25";
var content_title = document.getElementById('toptable').innerHTML;
var content_value = document.getElementById('content').innerHTML;

var docprint=window.open("","",disp_setting);
    docprint.document.open();
    docprint.document.write('<html><head><title>MEZCLA tulp\'s touch Web Shop</title>');
	docprint.document.write('<link href="css/style.css" rel="stylesheet" type="text/css" />');
    docprint.document.write('<link href="css/editor_style.css" rel="stylesheet" type="text/css"> <style>.headingtext{ font-family: Arial, Helvetica, sans-serif;	font-size: 18px;	color: #000000;	text-decoration: none;	font-weight: normal;}</style>');
        docprint.document.write('<script>function displaybutton(){  document.getElementById("printbutton").style.display="block";} function printfunction(){document.getElementById("printbutton").style.display="none";self.print();setTimeout("displaybutton()",5000);}</script>');
    docprint.document.write('</head><body  style="background:#FFFFFF;">');
	docprint.document.write('<img style="padding-left:38px" src="img/logo.jpg"/>');
	docprint.document.write('<div style="padding-left:35px;padding-top:20px;padding-right:20px;color:#000000;">'+content_title+'</div>');
	docprint.document.write('<div style="padding-left:35px;padding-top:20px;padding-right:20px;color:#000000;">'+content_value +'</div>');
	if(lang=='nl')
	{
   docprint.document.write('<div style="padding-left:35px; padding-top:15px;"><input type="button" value="Printen" name="realname" size="27" maxlength="3" style="background:#707070;border:1px solid #717171;" onclick="printfunction()" id="printbutton" /></div>');
	}
	else
	{
		 docprint.document.write('<div style="padding-left:35px; padding-top:15px;"><input type="button" value="Print" name="realname" size="27" maxlength="3" style="background:#707070;border:1px solid #717171;" onclick="printfunction()" id="printbutton" /></div>');
	}
docprint.document.write('<br><br><br></div></body></html>');
docprint.document.close();
docprint.focus();
}


