function PrintLink() {
	var url = document.location.href;
	var newurl = url;
	if ( url.indexOf("?") > -1 ) newurl = newurl+'&print=1';
	else newurl = newurl+'?print=1';
	window.open(newurl,'PrintPage','scrollbars=1,width=1024,height=768');
}

