	function docHeight() {
	  var myWidth = 0, myHeight = 0;
	  if( typeof( window.innerWidth ) == 'number' ) {
	    //Non-IE
	    myWidth = window.innerWidth;
	    myHeight = window.innerHeight;
	  } else if( document.documentElement &&
	      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	    //IE 6+ in 'standards compliant mode'
	    myWidth = document.documentElement.clientWidth;
	    myHeight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	    //IE 4 compatible
	    myWidth = document.body.clientWidth;
	    myHeight = document.body.clientHeight;
	  }
	  return myHeight;
	}
	
      var flashVars = "isIntro=1&documentHeight=" + docHeight() + "&tagline1="+tagline1+"&tagline2="+tagline2+"&tagline3="+tagline3;
	    

	  document.write("<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='100%' HEIGHT='100%' id='intro' ALIGN=''>");
	  document.write('<PARAM NAME=movie VALUE="flash/intro.swf">');
	  document.write('<PARAM NAME=quality VALUE=high>');
	  document.write('<PARAM NAME=base VALUE="flash">');
	  document.write('<PARAM NAME=scale VALUE=noscale>');
	  document.write('<PARAM NAME=wmode VALUE=transparent>');
	  document.write('<PARAM NAME=bgcolor VALUE=#FFFFFF>');
	  document.write("<param name=flashvars value='"+ flashVars + "'>");
	  document.write('<EMBED name="intro" flashvars="'+flashVars+ '" swliveconnect=true base="flash" src="flash/intro.swf" quality=high scale=noscale wmode=transparent bgcolor=#FFFFFF  WIDTH="100%" HEIGHT="100%" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	  document.write('</OBJECT>');


function getIntroMovieObject() {
   if (navigator.appName.indexOf("Microsoft Internet")!=-1) {
     return window.intro;
   } else {
     return window.document.intro; 
   }     
}

function transition() {
  var ie=document.all
  var movie = getIntroMovieObject();
  movie.StopPlay();
  
}


