// JavaScript Document
<!-- 
	var upgradeUrl = "http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) 
	{  
		// if we've detected an acceptable version
		if (versionMajor>=optimumMajorVersion)
			writeLoadMovie();
		else
			writeOptionalUpgrade(false);
		
	   
	}
	else
	{ 
		// flash is too old or we can't detect the plugin
		writeRequiredUpgrade();
	}
	
	
	function writeLoadMovie(bNewDocument)
	{
		var width = 900;
		var height = 480;
		var cabVersion = "7,0,0,0";
		var movieId = "Movie";
                            var movieUrl = "http://content.pradaparfums.com/version_7/F7_hyperscene.swf";
		var movieBase = "http://content.pradaparfums.com/version_7/";
		var runLocal = false;
		var addFooter = false;
	
	   var oeTags = '<table width="100%" height="100%">'
		+ '<tr><td align="center" valign="middle"><table width="'+width+'" height="'+height+'"><tr><td>'
		+ '<object width="'+width+'" height="'+height+'"classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
		+ ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+cabVersion+'"'
		+ ' id="'+movieId+'"'
		+ ' align="middle">'
		+ ' <param name="movie" value="'+movieUrl+'?base='+movieBase+'&debughtml='+debugActive+'&runLocal='+runLocal+'" />'
		+ ' <param name="quality" value="high" />'
		+ ' <param name="bgcolor" value="#000000" />'
		+ ' <embed src="'+movieUrl+'?base='+movieBase+'&debughtml='+debugActive+'&runLocal='+runLocal+'" quality="high" bgcolor="#000000" '
		+ ' width="'+width+'" height="'+height+'" name="'+movieId+'" align="middle"'
		+ ' play="true"'
		+ ' loop="false"'
		+ ' quality="high"'
		+ ' type="application/x-shockwave-flash"'
		+ ' pluginspage="http://www.macromedia.com/go/getflashplayer">'
		+ '<\/embed>'
		+ '<\/object>'
		+ '</td></tr>';
		if (addFooter)
		{
			oeTags += '<tr><td align="center"><br><br><a href="javascript:mOpenLegal();">Legal Notice</a>&nbsp;&nbsp;&nbsp;&copy; Fragrance and Skincare 2005 &nbsp;&nbsp;&nbsp; <a href="javascript:mOpenCredits();">Credits</a></td></tr>'
		}
		oeTags += '</table></td></tr></table>';
		
		var finalHtml = '';
		if (bNewDocument)
		{
			finalHtml = '<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />'
			+ '<title>Prada Parfums</title>'
			+ '<link rel="stylesheet" href="css/style.css" type="text/css">'
			+ '<script language="JavaScript" type="text/javascript" src="js/popups.js"></script>'
			+ '<script language="JavaScript" type="text/javascript" src="js/debug.js"></script>'
			+ '</head><body bgcolor="#000000" onLoad="mMax();">'
			+ oeTags 
			+ '</body></html>';
		}
		else
			finalHtml = oeTags;
		
		document.write(finalHtml);   // embed the flash movie
	}
	
	function writeOptionalUpgrade()
	{
	  var imgPath = "img/upgradingRecommended.gif";
	  var imgTags = '<table width="100%" height="100%"><tr><td valign="middle" align="center">'
	  + '<map name="UpgradeRecommended">'
	  + '<AREA HREF="#" ALT="Upgrade Macromedia Flash Plugin" onclick="DoUpgrade();" COORDS="29,117,131,137">'
	  + '<AREA HREF="#" ALT="Keep Macromedia Flash Plugin and browse site" onclick="writeLoadMovie(true);" COORDS="169,117,272,138">'
	  + '</map>'
	  + '<img src="'+imgPath+'" usemap="#UpgradeRecommended" border="0" /></td></tr></table>';
	  
	  document.write(imgTags); 
	}
	
	function writeRequiredUpgrade()
	{
	  var imgPath = "img/upgradingRequired.gif";
	   var imgTags = '<table width="100%" height="100%"><tr><td valign="middle" align="center">'
	  + '<map name="UpgradeRequired">'
	  + '<AREA HREF="#" ALT="Upgrade Macromedia Flash Plugin" onclick="DoUpgrade();" COORDS="101,117,203,137">'
	  + '</map>'
	  + '<img src="'+imgPath+'" usemap="#UpgradeRequired" border="0" /></td></tr></table>';
	  document.write(imgTags); 
	}
	function DoUpgrade()
	{
	  location.href=upgradeUrl; 
	}
  
  // -->