//Opens a javascript pop-up window to view the a flash movie depending on which url is passed /** parameters passed to function    strURL: the complete URL of the html file to open up    strWindowName: this will give a name to the pop-up window	intWindowHeight: height of pop-up in pixels	intWindowWidth: width of pop-up in pixels**/function openWin(strURL,strWindowName,intWindowHeight,intWindowWidth){	if (arguments.length != 4) {		window.alert("openWin called with wrong parameters");		return;	}	var params  = ""; 	params += "toolbar=0,"; 	params += "location=0,"; 	params += "directories=0,"; 	params += "status=0,"; 	params += "menubar=0,"; 	params += "scrollbars=0,"; 	params += "resizable=0,"; 	params += "width=" + intWindowWidth + ","; 	params += "height=" + intWindowHeight; 	window.open(strURL, strWindowName, params); }function closeWindow(){ window.close();}