﻿// JavaScript Document
var isUSA = false;
function checkifUSA() { //www.fx-auto-usa.com
    var winLoc = String(window.location);
    var test = winLoc.search(/fx-auto-usa/i);
    if (test != -1) {
        isUSA = true;
    }
}

function init() {
    checkifUSA();
    if (isUSA) {
        document.getElementById("USAtext").style.visibility = "hidden";
        document.getElementById("USAtext").style.display = "none";

    }
}


function isVideo() {
    if (isVideo) {
            document.getElementById('Video').style.display = "none";
        }
    else {
        document.getElementById('Video').style.display = "inline";
  
    }
}


// JavaScript Document
var isVideo = false;
function checkifVideo() {
    var winLoc = String(window.location);
 //   var test = winLoc.search(localhost:53897/FX-AUTO/Videos.aspx);
    if (test != -1) {
        isVideo = true;
    }
}


