var newwindow = '';
function thawtepop(url)
	{
		if (newwindow.location && !newwindow.closed)
		{
			newwindow.location.href = url;
		}
		else
		{
			newwindow=window.open(url,'name','height=500,width=500,left=60,top=60,resizable=yes,menubar=no,toolbar=no,location=no');
		}
		if (window.focus) {newwindow.focus()}
	}

function printPage(){
	if(navigator.appVersion.indexOf("Mac") >=0)  
	{  
		alert("This browser on Macintosh doesn't support automatic printing, you can use Apple+P to print this page!");  
	}  
	else
	{
		parent.main.focus();
		parent.main.print();
	}
	
}
