function openPopUpWindow(strFileName,intWidth,intHeight,intTop,intLeft){	//var strFileName = "popup.html" //This is the actual page you want to open in the popup window	//var intHeight = 265      //This is the window height	//var intWidth = 325       //This is the window width	//var intTop = 20         //This is how far from the top of the screen the window appears	//var intLeft = 20        //This is how far from the left of the screen the window appears	//No need to touch anything below here...	var popUpWindow = null	ns4 = (document.layers)? true:false	ie4 = (document.all)? true:false	if(ie4){		popUpWindow=window.open(strFileName,"BestWeddingSites","width=" + intWidth + ",height=" + intHeight + ",top=" + intTop + ",left=" + intLeft + ",resizable")	}	else{		popUpWindow=window.open(strFileName,"BestWeddingSites","width=" + intWidth + ",height=" + intHeight + ",screenX=" + intLeft + ",screenY=" + intTop + ",resizable")	}	popUpWindow.window.focus()}