// JavaScript Document

//Original Loader
function loader(url, name, width, height){


	var left = Math.floor( (screen.width - width) / 2);
	var top = Math.floor( (screen.height - height) / 2);
	var myOptions = "'toolbar=no, location=no, scrollbars=no, resizable=yes, width=" + width + ",height=" + height +",top=" + top + ", left=" + left + "'";

	myPop = window.open(url, name, myOptions);
	if(window.focus){myPop.focus()};
	//window.open("player.html", "player", "toolbar=no, status=no, menubar=no, scrollbars=no, resizable=no, width=955, height=690");
}

function embed(){
	var myTag = "";
	myTag += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="800" height="600" title="Author Recognition">';
	myTag += '<param name="movie" value="Intro.swf" />';
	myTag += '<param name="quality" value="high" />';
	myTag += '<embed src="Intro.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="600"></embed>';
	myTag += '</object>';
	document.write(myTag);
}
