<!--

function closewin(){
aWindow=window.close();
}

function contact() {
window.open('http://www.cubicuk.com/php/contact.php','Contact','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=477,height=400,left=1,top=1');
}

function about() {
window.open('http://www.cubicuk.com/php/about.php','about','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=477,height=400,left=1,top=1');
}

function terms() {
window.open('http://www.cubicuk.com/php/terms.php','terms','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=477,height=400,left=1,top=1');

}

function delivery() {
window.open('http://www.cubicuk.com/php/delivery.php','Delivery','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=477,height=400,left=1,top=1');

}

function large(url, width, height){
window.open(url,'large','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + width + ',height=' + height + ',left=1,top=1');
}


var requiredVersion = 6;
var useRedirect = true;

var flashPage = "index.php?page=shop"
var noFlashPage = "index.php?page=noflash"
var upgradePage = "index.php?page=upgrade"

var flash2Installed = false;
var flash3Installed = false;
var flash4Installed = false;
var flash5Installed = false;
var flash6Installed = false;
var maxVersion = 6;
var actualVersion = 0;
var hasRightVersion = false;		
var jsVersion = 1.0;

var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.indexOf("Windows") != -1) ? true : false;

jsVersion = 1.1;


if(isIE && isWin){
	document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('flash2Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.2"))) \n');
	document.write('flash3Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3"))) \n');
	document.write('flash4Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4"))) \n');
	document.write('flash5Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5"))) \n');
	document.write('flash6Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6"))) \n');	
	document.write('</SCR' + 'IPT\> \n');
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function detectFlash(){	

	if (navigator.plugins){								
		if (navigator.plugins["Shockwave Flash 2.0"]	
		|| navigator.plugins["Shockwave Flash"]){

			var isVersion2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + isVersion2].description;
			
			var flashVersion = parseInt(flashDescription.charAt(flashDescription.indexOf(".") - 1));

			flash2Installed = flashVersion == 2;		
			flash3Installed = flashVersion == 3;
			flash4Installed = flashVersion == 4;
			flash5Installed = flashVersion == 5;
			flash6Installed = flashVersion == 6;
		}
	}
	
	for (var i = 2; i <= maxVersion; i++) {	
		if (eval("flash" + i + "Installed") == true) actualVersion = i;
	}
	if(navigator.userAgent.indexOf("WebTV") != -1) actualVersion = 2;	
	
	if (actualVersion >= requiredVersion) {
		hasRightVersion = true;

		if (useRedirect) {
			if(jsVersion > 1.0) {
				window.location.replace(flashPage);
			} else {
				window.location = flashPage;
			}
		}
	} else {
	
		if (useRedirect) {
			if(jsVersion > 1.0) {
				window.location.replace((actualVersion >= 2) ? upgradePage : noFlashPage);
			} else {
				window.location = (actualVersion >= 2) ? upgradePage : noFlashPage;
			}
		}
	}
}

function unsubValidate() {  
	if (document.unsub.email.value == ""){
		alert("You must enter an email address");
		document.unsub.email.focus();
		return false;
	}
	return true;
}

function openProduct(product_id,range_id,brand_id) {
    thisMovie("cubicShop").openProductInFlash(product_id,brand_id,range_id);
}

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
		//alert(document[movieName])
        return document[movieName]
    }
}

function hideHTML () {
	var prodHTML = document.getElementById('noFlashProduct');
	prodHTML.style.display = 'none';
}

//-->