﻿// JScript File
function playFlash(file, heading) {
		var flashDemo='<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="560" HEIGHT="270" id="indepth" align="right">\n';
		flashDemo += '<PARAM NAME=movie VALUE="' + file + '">\n';
		flashDemo += '<PARAM NAME=quality VALUE="high">\n';
		flashDemo += '<PARAM NAME=bgcolor VALUE="#FFFFFF">\n';
		flashDemo += '<EMBED SRC="' + file + '" QUALITY="high" BGCOLOR="#FFFFFF" WIDTH="560" HEIGHT="270" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" align="right"></EMBED>\n';
		flashDemo += '</OBJECT>';

		document.getElementById('demoBox').innerHTML=flashDemo;
		document.getElementById('headingBox').innerHTML = heading;
}

function openWin(url, name, width, height) {
	var str="height="+height+",innerHeight="+height;
	str+= ",width="+width+",innerWidth="+width;
	if(window.screen){
		var ah=screen.availHeight - 30;
		var aw=screen.availWidth - 10;
		var xc=(aw - width) / 2;
		var yc=(ah - height) / 2;
		str+=",left="+xc+",screenX="+xc;
		str+=",top="+yc+",screenY="+yc;
		str+=",directories=0,menubar=0,resizable=0,scrollbars=0,status=no,toolbar=0,titlebar=0,location=0";
	}
	var Win=window.open(url, name, str);
}
function openWinFull(url, name) {
	if(window.screen){
		var ah=screen.availHeight - 30;
		var aw=screen.availWidth - 10;
		var str="height="+ah+",innerHeight="+ah;
		str+= ",width="+aw+",innerWidth="+aw;
		str+=",left=0,screenX=0,top=0,screenY=0,directories=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0,titlebar=0,location=0";
	}
	var Win=window.open(url, name, str);
}

