window.addEvent("domready", function() {
	
	if($("intro"))
	{
		var vars = {};
		var params = { scale:'noScale', base:'swf', allowFullScreen:'true' };
		var attributes = { id:'intro', name:'intro' };
		swfobject.embedSWF("swf/Intro.swf", "intro", "400", "400", "10.0.12" , "swf/expressInstall.swf", vars, params, attributes );
	}
	
	if($("flashContent"))
	{
		var vars = {};
		var params = { scale:'noScale', base:'swf', allowFullScreen:'true' };
		var attributes = { id:'flashContent', name:'flashContent' };
		swfobject.embedSWF("swf/Main.swf?c=foo456", "flashContent", "100%", "100%", "10.0.12" , "swf/expressInstall.swf", vars, params, attributes );
	}
});

function openFullWindow(url)
{
	var scrollbars = (screen.height < 800) ? "yes" : "no";
	var windowprops = 'width=' + screen.width + ',height=' + screen.height + ',top='+ 0 +',left='+ 0 +',toolbar=no,location=no,directories=no,status=no,scrollbars=' + scrollbars + ',menubar=no';
	var popup = window.open(url, 'remote', windowprops);
	popup.moveTo(0, 0);
	popup.resizeTo(screen.width, screen.height);
	popup.focus();
}
