
/* print current site */
function printCurrentSite(intro, linkname, site, file) {
	var output;
	output = "<strong><p style='font-family: verdana; font-size: 11px;'>" + intro + "</strong></p><p><ul><li><a style='font-family: verdana; font-size: 11px;' target='_blank' href='data/pdf/" + file + "'>"+ linkname + " " + site + "</a></li></ul></p>";
	var html = window.open("", "", "toolbar,width=640,height=480");
	html.document.write(output);
	html.document.close();
}

