Popups - internet explorer

Associate
Joined
4 Jan 2005
Posts
64
Internet explorer doesnt seem to block my colleges intranets popups, even though internet explorer is set to block ALL popups! any suggestions ? i dont really want to install third party software

the code it uses from what i can tell! is:

Code:
 function doPopUp() { // pop up window with IT courses
			var sec = new Date().getMilliseconds();
			switch ( sec % 5 ) {
				case 0:
					window.open("popups/ETSpopup.htm","Lpopup","status=no,resizable,toolbar=no,scrollbars=no,menubar=no,left=100,top=100,width=770,height=400");
					break;
				case 1:
					window.open("popups/Beautypopup.htm","Mpopup","status=no,!resizable,toolbar=no,scrollbars=no,menubar=no,left=0,top=0,width=545,height=520");
					break;
				case 2:
					window.open("popups/CreativeTalent.htm","Npopup","status=no,!resizable,toolbar=no,scrollbars=no,menubar=no,left=0,top=0,width=534,height=755");
					break;
				case 3:
					window.open("popups/FacePopup.htm","Opopup","status=no,!resizable,toolbar=no,scrollbars=no,menubar=no,left=0,top=0,width=650,height=480");
					break;
			}
		}
	//-->
	</script>
 
Back
Top Bottom