﻿function PopupServiceAreas(cn) {
    var cn;
    var url = '/serviceareas.aspx'
    if (null == cn) {
        contactwindow = window.open(url, "mywindow", "location=0,status=0,toolbar=0,menubar=0,scrollbars=yes,width=560,height=500");
        contactwindow.moveTo((screen.width / 2) - 280, (screen.height / 2) - 250);
    }
    else {
        var newurl = url + "?cn=" + cn
        contactwindow = window.open(newurl, "mywindow", "location=0,status=0,toolbar=0,menubar=0,scrollbars=yes,width=560,height=500");
        contactwindow.moveTo((screen.width / 2) - 280, (screen.height / 2) - 250);
    }
}


function SmallPopup(fn) {
    var fn;
    var url = '/' + fn + '.aspx'
    contactwindow = window.open(url, "mywindow", "location=0,status=0,toolbar=0,menubar=0,scrollbars=yes,width=400,height=400");
    contactwindow.moveTo((screen.width / 2) - 200, (screen.height / 2) - 200);
}


function PopupDownload(fn) {
    var fn;
    var url = '/' + fn + '.aspx'
    contactwindow = window.open(url, "mywindow", "location=0,status=0,toolbar=0,menubar=0,scrollbars=yes,width=1024");
    contactwindow.moveTo((screen.width / 2) - 500, (screen.height / 2) - 500);
}
