function window_new_small( URL, title )
{
	var thisWindow;
	thisWindow = window.open(URL,title,"width=860,height=400,scrollbars=yes,screenX=0,screenY=0,toolbar=no,location=no,menubar=no");
	thisWindow.moveTo((screen.width-780)/2,(screen.height-550)/3);
 	thisWindow.window.focus();
}
function window_new( URL, title )
{
	var thisWindow;
	thisWindow = window.open(URL,title,"width=950,height=390,scrollbars=yes,screenX=0,screenY=0,toolbar=no,location=no,menubar=no");
	thisWindow.moveTo((screen.width-780)/2,(screen.height-550)/3);
 	thisWindow.window.focus();
}



function window_new_vertical( URL, title )
{
	var thisWindow;
	thisWindow = window.open(URL,title,"width=660,height=550,scrollbars=yes,screenX=0,screenY=0,toolbar=no,location=no,menubar=no");
	thisWindow.moveTo((screen.width-780)/2,(screen.height-550)/3);
 	thisWindow.window.focus();
}


function window_horiz( URL, title )
{
	var thisWindow;
	thisWindow = window.open(URL,title,"width=950,height=440,scrollbars=yes,screenX=0,screenY=0,toolbar=no,location=no,menubar=no");
	thisWindow.moveTo((screen.width-780)/2,(screen.height-550)/3);
 	thisWindow.window.focus();
}


function window_vertical_mix( URL, title )
{
	var thisWindow;
	thisWindow = window.open(URL,title,"width=810,height=550,scrollbars=yes,screenX=0,screenY=0,toolbar=no,location=no,menubar=no");
	thisWindow.moveTo((screen.width-780)/2,(screen.height-550)/3);
 	thisWindow.window.focus();
}

