function createApplet(file) {
	document.write("<div id=\"java\">");

	document.write("<applet code=\"IpixViewer.class\" name=\"IpixViewer\" width=\"600\" height=\"400\" archive=\"/movie/IpixViewer.jar\">");
	document.write("<param name=\"URL\" value=\""+file+".ipx\">");
	document.write("<param name=\"toolbar\" value=\"on\">");
	document.write("<param name=\"splash\" value=\"/picture/frame/header_bg.gif\">");
	document.write("<param name=\"splashbg\" value=\"CCCCCC\">");
	document.write("<param name=\"initfov\" value=\"0\">");
	document.write("<param name=\"spinspeed\" value=\"6\">");
	document.write("<param name=\"spinstyle\" value=\"flat\">");
	document.write("<param name=\"helpurl\" value=\"http://www.vanschilt.com\">");
	document.write("<param name=\"helpframe\" value=\"_blank\">");
	document.write("</applet>");
	
	document.write("</div>");

	document.write("<div id=\"quicktime\" style=\"display: none;\">");
	
	document.write("<object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\"  width=\"600\" height=\"400\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\" border=\"0\">");
	document.write("<param name=\"SRC\" value=\""+file+".mov\">");
	document.write("<param name=\"CONTROLLER\" value=\"false\">");
	document.write("<param name=\"SCALE\" value=\"TOFIT\">");
	document.write("<param name=\"AUTOPLAY\" value=\"TRUE\">");
	document.write("<param name=\"CACHE\" value=\"FALSE\">");
	document.write("<param name =\"KIOSKMODE\" value=\"TRUE\">");
	document.write("<embed src=\"/movie/plein.mov\" kioskmode=true width=\"600\" height=\"400\" controller=\"False\" scale=\"TOFIT\" autoplay=\"TRUE\" cache=\"FALSE\" type=\"video/quicktime\" pluginspage=\"http://www.apple.com/quicktime/download/\"> </embed>");
	document.write("</object>");
	
	document.write("</div>");
	return;
}
function popup(url)
{
	newwindow=window.open(url,'name','height=200,width=300');
	if (window.focus) {newwindow.focus()}
	return false;
}
