function popUp(strURL,strWindowName,strWidth,strHeight) {
	
	// Set the options for the pop-up window
	var strOptions="width="+strWidth+",height="+strHeight+",scrollbars=yes,status=yes,resizable=yes"; // Removed ,top=0,left=0
	
	// Open the window
	window.open(strURL, strWindowName, strOptions);

}