//-- © /f0 2002-07 fredrik_olofsson@hotmail.com

//OSName = "unknown";
bName = "unknown";
//bVer = "unknown";
//if(navigator.appVersion.indexOf("Mac")>0) OSname= "Mac";
//if(navigator.appVersion.indexOf("Win")>0) OSname= "Win";
if(navigator.appName.substring(0,8)=="Netscape") bName= "NN";
if(navigator.appName.substring(0,9)=="Microsoft") bName= "IE";
//if(parseInt(navigator.appVersion)>=3) bVer= "3x";
//if(parseInt(navigator.appVersion)>=4) bVer= "4x";
//if(parseInt(navigator.appVersion)>=5) bVer= "5x";

function openQTmusic(url, name) {
	var x= 100, y= 100, width= 400, height= 80, musicWin;
	musicWin= open("", name, "width="+width+",height="+height+",resizable=no,scrollbars=no,toolbar=0,status=1,menubar=0");
	musicWin.moveTo(x, y);
	musicWin.document.open();
	musicWin.document.write("<html><head><title>"+name+"</title></head><body background=../images/play.gif bgcolor=#D0D0FF>");
	musicWin.document.write("<p align=center><embed src='../video/remote01.mov' width=145 height=25 controller=false>");
	musicWin.document.write("<embed src="+url+" moviename=content controller=false hidden cache=true loop=false pluginspage=plugin_error-qt.html>");
	musicWin.document.write("</body></html>");
	musicWin.document.close();
}
function openQTvideo(url, name, width, height) {
	var x= 180, y= 200, w2, h2, videoWin;
	w2= width+28;
	h2= height+88;
	videoWin= open("", name, "width="+w2+",height="+h2+",resizable=no,scrollbars=no,toolbar=0,status=1,menubar=0");
	videoWin.moveTo(x, y);
	videoWin.document.open();
	videoWin.document.write("<html><head><title>"+name+"</title></head><body bgcolor=#D0D0FF><center>");
	videoWin.document.write("<embed src="+url+" width="+width+" height="+height+" moviename=content autoplay=true controller=false visible cache=true loop=true pluginspage=plugin_error-qt.html>");
	videoWin.document.write("</center><p align=center><embed src=../video/remote01.mov width=145 height=25 controller=false>");
	videoWin.document.write("</body></html>");
	videoWin.document.close();
}
function openJava(applet, name, width, height, param, value) {
	var x= 10, y= 10, w2, h2, javaWin;
	w2= width+25;
	h2= height+37;
	javaWin= open("", name, "width="+w2+",height="+h2+",resizable=no,scrollbars=no,toolbar=0,status=1,menubar=0");
	javaWin.moveTo(x, y);
	javaWin.document.open();
	javaWin.document.write("<html><head><title>"+name+"</title></head><body bgcolor=#D0D0FF>");
	javaWin.document.write("<center><applet code="+applet+" width="+width+" height="+height+">");
	if(param!="") {
		javaWin.document.write("<param name='"+param+"' value='"+value+"'>");
	}
	javaWin.document.write("</applet></center></body></html>");
	javaWin.document.close();
}
function openJavaArchive(applet, archive, name, width, height, param, value) {
	var x= 10, y= 10, w2, h2, javaArcWin;
	w2= width+25;
	h2= height+37;
	javaArcWin= open("", name, "width="+w2+",height="+h2+",resizable=no,scrollbars=no,toolbar=0,status=1,menubar=0");
	javaArcWin.moveTo(x, y);
	javaArcWin.document.open();
	javaArcWin.document.write("<html><head><title>"+name+"</title></head><body bgcolor=#D0D0FF>");
	javaArcWin.document.write("<center><applet code="+applet+" archive="+archive+" width="+width+" height="+height+">");
	if(param!="") {
		javaArcWin.document.write("<param name='"+param+"' value='"+value+"'>");
	}
	javaArcWin.document.write("</applet></center></body></html>");
	javaArcWin.document.close();
}
function openPicture(link, name, width, height) {
	var x= 30, y= 30, w2, h2, pictWin;
	w2= width+25;
	h2= height+37;
	pictWin= open("", name, "width="+w2+",height="+h2+",resizable=no,scrollbars=yes,toolbar=0,status=1,menubar=0");
	pictWin.moveTo(x, y);
	pictWin.document.write("<html><head><title>"+name+"</title></head><body bgcolor=#D0D0FF><center>");
	pictWin.document.write("<img src="+link+" alt='"+name+"'>");
	pictWin.document.write("</center></body></html>");
	pictWin.document.close();
}
