//MOVE SCRIPT TO TOP INCLUDE FILE..
function openWindow(strFileName,config,strWindowHeight,strWindowWidth,strWindowName){		
	if ((strWindowName == null) || (strWindowName == "")) {
		strWindowName = "PopUp";
	}	
	if ((strWindowHeight == null) || (strWindowHeight == "")) {
		strWindowHeight = "400";
	}	
	if ((strWindowWidth == null) || (strWindowWidth == "")) {
		strWindowWidth = "600";
	}
	if ((config == null) || (config == "")) {
		config = "toolbar=yes, resizable=yes, scrollbars=yes";
	}
		

	//Open Pop Window
	var strConfig = "width=" + strWindowWidth + ",height=" + strWindowHeight + ", " + config + ", left=28,top=28,status=yes,menubar=yes,location=no,ontop=true";
	window.open(strFileName, strWindowName, strConfig); 		
}
