// ------------------------------
function openWindow(URL)
{
	newWindow = window.open(URL, "newWindow","toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=760,height=500,left=10,top=10");
	newWindow.focus();
}
