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

}
function acWindow(myURL)
{
	var acWindow = window.open(myURL,"tmp","scrollbars=1,resizable=1,width=570,height=600,left=240,top=150");
	
	acWindow.focus();

}

