﻿function OpenVideo(fileName) {

    var fromAddress = "";
    var toaddress = "";

    var Args = new Array(fromAddress, toaddress);
    var WinSettings = "center:yes;resizable:no;dialogHeight:700px;dialogWidth:1000px"
    var file = "HTML/" + fileName;
    var Args = window.showModalDialog(file , Args, WinSettings);
    if (Args == null) {
        //window.alert("Nothing returned from child. Nzo changes made to input boxes");
    }
    else {
//        retvalA.value = Args[0].toString();
//        retvalB.value = Args[1].toString();       
    }
}

//function MoveDivTagForAboutMozilla() {   
//    if(navigator.appName != "Microsoft Internet Explorer") {  
//        document.getElementById("divAboutElocalDemo").style.top = '430px';  
//        document.getElementById("divAboutElocalDemo").style.left = '148px';    
//     }   
//}
function MoveDivTagForMozilla() {   
    if(navigator.appName != "Microsoft Internet Explorer") { 
      document.getElementById("CustomSearch").style.top = '822px';            
      document.getElementById("HybridSearch").style.top = '1465px';
      document.getElementById("DivElocalDemo").style.top = '296px';  
     }   
}