/*
 * Open Window
 */
 
function OpenWin(URL,h,w) {
	newWindow=window.open(URL,"","height="+h+",width="+w+",resizable=1, scrollbars=1");
	}