﻿function popExit(destURL)
{
    window.open('480-interstitial.aspx?link=' + destURL, 'Interstit', 'width=452, height=391, status=yes, location=no, menu=no, scrollable=no, resize=no');
}

function popExit2(destURL) {
    window.open('480-interstitial2.aspx?link=' + destURL, 'Interstit', 'width=452, height=391, status=yes, location=no, menu=no, scrollable=no, resize=no');
}

//Pop Custom-Size Window 1) link[string] 2) width[int] 3) length[int] 4) scrollbars[yes/no]
function launchWindow() {
    var windowArgs;
    windowArgs = launchWindow.arguments;
    var winLeft = (screen.width - windowArgs[1]) / 2;
    var winTop = (screen.height - windowArgs[2]) / 2;
    var popVars;
    popVars = window.open(windowArgs[0], 'refWin', 'width=' + windowArgs[1] + ',height=' + windowArgs[2] + ',left=' + winLeft + ',top=' + winTop + ',screenX=' + winLeft + ',screenY=' + winTop + ',toolbar=no,location=no,scrollbars=' + windowArgs[3] + ',menubar=no,status=no,resizable=no');
}

function popDisclaimer(URL, zip, distance) {
    window.open('330-ASO-finder-disclaimer.aspx?URL=' + URL + 'zip=' + zip + '&distance=' + distance, 'Disclaimer', 'width=450, height=390, status=yes, location=no, menu=no, scrollable=no, resize=no');
}