// opens a new window of specified size
function newWin(windowURL, windowName) {
	var attributes;
	
	attributes = "directories=no,height=460,location=yes,menubar=yes,resizable=yes,scrollbars=yes,toolbar=yes,width=797";

	myWindow = window.open(windowURL, windowName, attributes);
	myWindow.focus();
	
	//if (locX && locY) {
	//	myWindow.moveTo(500,20);
	//}
}


