// JavaScript Document

// pop-up window

		
function openNewWindow(windowName, fileName, windowWidth, windowHeight) {
				
					newWindow = window.open(fileName,windowName,"width="+windowWidth+",height="+windowHeight+",scrollbars=yes, resize=auto")
				//	newPosX=(screen.width/2)-(windowWidth/2);
				//	newPosY=(screen.height/2)-(windowHeight/2)-24;
				//	window.newWindow.moveTo(newPosX,newPosY);
					window.newWindow.focus();
		
				}

