//JavaScript1.2
function movieWindow(theURL,theWidth,theHeight) {
		ypos=(screen.height-theHeight)*.3;
		xpos=(screen.width-theWidth)*.5;
	buttons='<a href="javascript:goHome()"><img src="images/home.gif" width="81" height="33" alt="click to get to home page" border="0"></a><img src="images/dots.gif" width="85" height="33" alt="close window" border="0"><a href="javaScript:window.close();"><img src="images/close.gif" width="74" height="33" alt="" border="0"></a>';
		buttonHeight=33;
	if (theWidth<144) {
		buttons='<a href="javascript:goHome()"><img src="images/home_s.jpg" width="64" height="18" alt="click to get to home page" border="0"></a><a href="javaScript:window.close();"><img src="images/close_s.gif" width="64" height="18" alt="close window" border="0"></a>';
		buttonHeight=18;
		}
	myWindow=window.open("","","width="+theWidth+",height="+(theHeight+buttonHeight)+",resizable=yes,screenX="+xpos+",screenY="+ypos+",left="+xpos+",top="+ypos);
		myWindow.document.write('<html><head><style type="text/css">body { margin-top: 0; margin-left: 0; margin-right: 0; margin-bottom: 0; }</style><title>AMN - Movie Preview</title></head><body bgcolor="#8C8A8C"><script language="JavaScript1.1">function goHome() { window.opener.location="http://www.acameda.com/"; 	window.close(); return false; } </script> <div align="center"><OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+theWidth+'" height="'+(theHeight-1)+'" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"><param name="src" value="movies/'+theURL+'"><param name="autoplay" value="true"><param name="controller" value="true"><embed src="movies/'+theURL+'" width="'+theWidth+'" height="'+(theHeight-1)+'" autoplay="true" CONTROLLER="true" LOOP="false" PLUGINSPAGE="http://www.apple.com/quicktime/download/"></EMBED></OBJECT><br>'+buttons+'</div></body></html>');
		myWindow.document.close();
	}

