﻿function formpopup(lnk) { 
    var X, Y, OW, OH;
    var URL;
    if (navigator.appName=="Netscape" || navigator.appName=="Opera") {
        X = window.screenX;
        Y = window.screenY;
        OW = window.outerWidth;
        OH = window.outerHeight;
    }
    if (navigator.appName.indexOf("Microsoft")!=-1) {
        X = window.screenLeft;
        Y = window.screenTop;
        OW = document.documentElement.offsetWidth;
        OH = document.documentElement.offsetHeight;
    }    
    if (String(window.location).indexOf("http://dev-nyapplianceswapout.lmbps.com/") != -1) {
        URL = "http://dev-nysmart.lmbps.com/" + lnk
    }
    else if (String(window.location).indexOf("http://staging-nyapplianceswapout.lmbps.com") != -1) {
        URL = "https://staging.nysmart.org/" + lnk
    }
    else if (String(window.location).indexOf("http://www.nyapplianceswapout.com/") != -1) {
        URL = "https://www.nysmart.org/" + lnk
    }
    else if (String(window.location).indexOf("http://localhost") != -1)
    {
        URL = "http://localhost:2069/" + lnk
    }
    else{
        URL = "https://www.nysmart.org/" + lnk
    }        
    strscreenX = 0;
    strscreenY = 0;                       
    window.open(URL, "selection","left="+strscreenX+",top="+strscreenY+",height="+OH+",width="+OW+",scrollbars=yes") 
} 