function resizeWin(width,height) {
     window.resizeTo(width,height);
	}
function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	newWindow.focus();
	}
