// JavaScript Document

function fla_ins(divswfid, fname, fwidth, fheight, vmode, bcolor,degrader,maptype){

	var fobject = "";	
	fobject= '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="'+fwidth+'" height="'+fheight+'" align="middle">';
	fobject += '<param name="allowScriptAccess" value="always">';
	fobject += '<param name="movie" value="'+fname+'">';
	fobject += '<param name="quality" value="high">';
	fobject += '<param name="wmode" value="'+vmode+'">';
	fobject += '<param name="bgcolor" value="' + bcolor + '">';
	fobject += '<img id="menumap" usemap="#menumap" src="' + degrader + '" style=" position:absolute; left:0px; top:0px;"/>';

	if (maptype == true) {
	    fobject += '<map id="_menumap" name="menumap">';
	    fobject += '<area shape="rect" coords="319,357,381,387" href="page01_01.html" alt="About Us" title="About Us"    />';
	    fobject += '<area shape="rect" coords="396,357,488,387" href="page02_01.html" alt="News and Events" title="News and Events"    />';
	    fobject += '<area shape="rect" coords="511,357,570,387" href="page03_01.html" alt="Divisions" title="Divisions"    />';
	    fobject += '<area shape="rect" coords="589,357,653,387" href="page04.html" alt="Research" title="Research"    />';
	    fobject += '<area shape="rect" coords="674,357,738,387" href="page05_01.html" alt="Resources" title="Resources"    />';
	    fobject += '<area shape="rect" coords="762,357,874,387" href="../downfile/commercialize.pdf" alt="Commercialization" title="Commercialization"    />';
	    fobject += '<area shape="rect" coords="817,0,865,20" href="index.html" alt="Home" title="Home"    />';
	    fobject += '<area shape="rect" coords="868,1,916,21" href="#" alt="Site Map" title="Site Map"    />';
	    fobject += '<area shape="rect" coords="925,2,978,22" href="page01_06.html" alt="Contact Us" title="Contact Us"    />';
	    fobject += '</map>';
	}

	else {
	    fobject += '<map id="_menumap" name="menumap">';
	    fobject += '<area shape="rect" coords="317,206,379,235" href="page01_01.html" alt="About Us" title="About Us"    />';
	    fobject += '<area shape="rect" coords="398,206,492,235" href="page02_01.html" alt="News and Events" title="News and Events"    />';
	    fobject += '<area shape="rect" coords="502,206,576,235" href="page03_01.html" alt="Divisions" title="Divisions"    />';
	    fobject += '<area shape="rect" coords="589,206,658,235" href="page04.html" alt="Research" title="Research"    />';
	    fobject += '<area shape="rect" coords="672,206,741,235" href="page05_01.html" alt="Resources" title="Resources"    />';
	    fobject += '<area shape="rect" coords="760,206,877,235" href="../downfile/commercialize.pdf" alt="Commercialization" title="Commercialization"    />';
	    fobject += '<area shape="rect" coords="821,0,866,19" href="index.html" alt="Home" title="Home"    />';
        fobject += '<area shape="rect" coords="870,0,915,19" href="#" alt="Site Map" title="Site Map"    />';
        fobject += '<area shape="rect" coords="923,0,978,19" href="page01_06.html" alt="Contact Us" title="Contact Us"    />';
        fobject += '</map>';
	}


	fobject += '<embed " width="' + fwidth + '" height="' + fheight + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="' + fname + '" wmode="' + vmode + '" quality="high" allowScriptsAccess="always" style=" position:absolute; left:0px; top:0px;">';

    fobject += '</object>';
	
	var divswfArea = document.getElementById(divswfid);	
	divswfArea.innerHTML = fobject;
}

//fla_ins(divswfid, fname, fwidth, fheight, vmode, bcolor,degrader,maptype)
//degrader is the images that will replace the flash file
function idxent(){//this is for the main page flash
	if(!document.getElementById("idxfla")){return false;}
	fla_ins("idxfla", "../images/idxfla.swf", "990", "425", "transparent", "#fff", "../images/degradedbanner_new.jpg",true);
}
function swfent(){//this is the other pages' small version flash
	if(!document.getElementById("topflash")){return false;}
	fla_ins("topflash", "../images/topflash01.swf", "990", "275", "transparent", "#fff", "../images/degradedbanner2_new.jpg",false);
}

addLoadEvent(idxent);
addLoadEvent(swfent);
