//<!--
	function empty(value) {
		switch(value) {
			case "":
			case 0:
			case "0":
			case null:
			case false:
			case typeof this == "undefined":
				return true;
					default : return false;
		}
	}

	function writeIfNotEmpty(preString, valueToTest, lineToWrite){
		
		if(!empty(valueToTest)){
			document.open();
			document.write(	preString + lineToWrite );
			document.close();
			return 1;
		}
		return 0;
	}
	
	
	function addSold(soldString, lang){
		 var isSold = soldString == null ? false : (soldString.toUpperCase() == 'SOLD');
		if(isSold){
			document.open();
			document.write('<div style="position:relative;"><div class="soldBanner_' + lang + '"></div></div>');
			document.close();
		}
	}
	
	function write(data){
		document.open();
		document.write( data );
		document.close();
	}
	
	function isFlashInstalled(){
		var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
		var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
		var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

		if (navigator.plugins != null && navigator.plugins.length > 0) {
			if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
				return true;
			}
		} else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1){
			return true;	
		} else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1){
			return true;
		} else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1){
			return true;
		} else if ( isIE && isWin && !isOpera ) {
			var flashVer = ControlVersion();
			if(flashVer == -1){
				return false;
			} else {
				return true;
			}
		}
		
		return false;
	}

	function ControlVersion()
	{
		var version;
		var axo;
		var e;
	
		// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
	
		try {
			// version will be set for 7.X or greater players
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	
		if (!version)
		{
			try {
				// version will be set for 6.X players only
				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
				
				// installed player is some revision of 6.0
				// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
				// so we have to be careful. 
				
				// default to the first public version
				version = "WIN 6,0,21,0";
	
				// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
				axo.AllowScriptAccess = "always";
	
				// safe to call for 6.0r47 or greater
				version = axo.GetVariable("$version");
	
			} catch (e) {
			}
		}
	
		if (!version)
		{
			try {
				// version will be set for 4.X or 5.X player
				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
				version = axo.GetVariable("$version");
			} catch (e) {
			}
		}
	
		if (!version)
		{
			try {
				// version will be set for 3.X player
				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
				version = "WIN 3,0,18,0";
			} catch (e) {
			}
		}
	
		if (!version)
		{
			try {
				// version will be set for 2.X player
				axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
				version = "WIN 2,0,0,11";
			} catch (e) {
				version = -1;
			}
		}
		
		return version;
	}		
		
	//-->
