function Clickheretoprint()
{
	var disp_setting="toolbar=no,location=no,directories=no,menubar=no,";
	    disp_setting+="scrollbars=yes,width=625, height=450, left=100, top=25";
	var content_value = document.getElementById('page1').innerHTML;
	var docprint=window.open("","",disp_setting);
	    docprint.document.open();
	    docprint.document.write('<html><head><title>huisteil</title>');
		docprint.document.write('<link href="css/style.css" rel="stylesheet" type="text/css" />');
	    docprint.document.write('</head><body style=" background:none; font-family:verdana,arial,Microsoft Sans Serif; font-size:9px; line-height:12px; font-weight:lighter;" >');
		docprint.document.write('<div >'+content_value + '<div>');
	   docprint.document.write('<div style="padding-left:2px; padding-top:5px; "><input type="button" value="Printen" name="realname" size="27" maxlength="3" onclick="self.print()"></div>');
	docprint.document.write('<br><br><br></div></body></html>');
	docprint.document.close();
	docprint.focus();
}

function addbookmark()
{
//	alert('test');
var strQueryString="";

var hasQueryString = document.URL.indexOf('?');

if (hasQueryString != -1)

{

    strQueryString = document.URL.substring(hasQueryString+1, document.URL.length);

}

title = "number 1 toys";
url = "http://192.168.0.20/number_toys/index.php?"+strQueryString;
if (window.sidebar) {
// Mozilla Firefox Bookmark
window.sidebar.addPanel(title, url,"");
} else if( window.external ) {
// IE Favorite
window.external.AddFavorite(url,title);
}
//alert('test');
}

