<!--
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	var introwidth ="100%" ; // Width of template
  var introheight ="430px"; // Height of template
  
  embedstring = '<EMBED src=intro.swf quality=high scale="exactfit"  bgcolor=#000000 WIDTH=' + introwidth + ' HEIGHT='+introheight +' NAME="Soundchaser Discos Intro" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>'
  document.write('<div id="flash"> \n');
  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" id="Soundchaser Discos Intro" width=' + introwidth+ ' height=' + introheight + '> \n');
  document.write('<PARAM NAME=movie VALUE=intro.swf> \n');
  document.write('<param name="SCALE" value="exactfit">\n');
  document.write('<PARAM name=quality value=high> \n');
  document.write('<PARAM name=menu value="false"> \n');
  document.write(embedstring + '\n');
  document.write('</OBJECT> \n');
  document.write('</div> \n');
		
} else {  // flash is too old or we can't detect the plugin
	location.href='index.php?page=html&from=flash';
}
// -->
