function newWindow(myURL)
{
	var newWindow = window.open(myURL,"tmp","scrollbars=0,resizable=0,width=370,height=400,left=240,top=150");
	
	newWindow.focus();

}
