﻿// JScript File
function FP_swapImgRestore() {//v1.0
 var doc=document,i; if(doc.$imgSwaps) { for(i=0;i<doc.$imgSwaps.length;i++) {
  var elm=doc.$imgSwaps[i]; if(elm) { elm.src=elm.$src; elm.$src=null; } } 
  doc.$imgSwaps=null; }
}

function FP_swapImg() {//v1.0
 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
 elm.$src=elm.src; elm.src=args[n+1]; } }
}

function FP_preloadImgs() {//v1.0
 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}

function FP_getObjectByID(id,o) {//v1.0
 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
 return null;
}
// JScript File
function unloadMap()
{
    try
    {
        if (typeof(GUnload) == "function")
        {
            GUnload();
        }
    }
    catch(e)
    {
    
    }
}

function loadMap()
{
    try
    {
        if (typeof(loadSpecificMap) == "function")
        {
            loadSpecificMap();
        }
    }
    catch(e)
    {
    
    }
}

function showDiv(id)
{
if (document.getElementById) {
	document.getElementById(id).style.visibility = 'visible';
	}
else if (document.all) {
	document.all.myLayer.style.visibility = 'visible';
	}
else if (document.layers) {
	var l = 'myLayer';
	eval('document.' + l + '.visibility="show"');
	}
} // function showDiv()

function hideDiv(id)
{
if (document.getElementById) {
	document.getElementById(id).style.visibility = 'hidden';
	}
else if (document.all) {
	document.all.myLayer.style.visibility = 'hidden';
	}
else if (document.layers) {
	var l = 'myLayer';
	eval('document.' + l + '.visibility="hide"');
	}
} // function hideDiv()

function openWindow(anchor, options) {

    var args = '';

    if (typeof (options) == 'undefined') { var options = new Object(); }
    if (typeof (options.name) == 'undefined') { options.name = 'win' + Math.round(Math.random() * 100000); }

    if (typeof (options.height) != 'undefined' && typeof (options.fullscreen) == 'undefined') {
        args += "height=" + options.height + ",";
    }

    if (typeof (options.width) != 'undefined' && typeof (options.fullscreen) == 'undefined') {
        args += "width=" + options.width + ",";
    }

    if (typeof (options.fullscreen) != 'undefined') {
        args += "width=" + screen.availWidth + ",";
        args += "height=" + screen.availHeight + ",";
    }

    if (typeof (options.center) == 'undefined') {
        options.x = 0;
        options.y = 0;
        args += "screenx=" + options.x + ",";
        args += "screeny=" + options.y + ",";
        args += "left=" + options.x + ",";
        args += "top=" + options.y + ",";
    }

    if (typeof (options.center) != 'undefined' && typeof (options.fullscreen) == 'undefined') {
        options.y = Math.floor((screen.availHeight - (options.height || screen.height)) / 2) - (screen.height - screen.availHeight);
        options.x = Math.floor((screen.availWidth - (options.width || screen.width)) / 2) - (screen.width - screen.availWidth);
        args += "screenx=" + options.x + ",";
        args += "screeny=" + options.y + ",";
        args += "left=" + options.x + ",";
        args += "top=" + options.y + ",";
    }

    if (typeof (options.scrollbars) != 'undefined') { args += "scrollbars=1,"; }
    if (typeof (options.menubar) != 'undefined') { args += "menubar=no,"; }
    if (typeof (options.locationbar) != 'undefined') { args += "location=no,"; }
    if (typeof (options.resizable) != 'undefined') { args += "resizable=1,"; }
    if (typeof (options.toolbars) != 'undefined') { args += "toolbar=no,"; }
    if (typeof (options.status) != 'undefined') { args += "status=no,"; }
    if (typeof (options.directories) != 'undefined') { args += "directories=no,"; }
    if (typeof (options.url) != 'undefined') { args += "url=no,"; }



    var win = window.open(anchor, options.name, args);
    return false;

}