﻿$(document).ready(function() {
    $("#bannerNav .navItem:last").css("padding-right", "10px");
    $("#bannerNav .navItem:last").css("border", "solid 0px #ffffff");
    $("#mainColumnDiv #promoColumns #thumbnail").css("display", "none");
    $(".promoCol:last").css("padding-right", "0px");
});

function MyPopup(sLocation, sWindowName, nHeight, nWidth, nTopOffset, nLeftOffset, sConfirmText) {
    if (sLocation == null) sLocation = "http://www.urbanplanet.com/";
    if (sWindowName == null) sWindowName = "WindowName";
    if (nHeight == null) nHeight = 400;
    if (nWidth == null) nWidth = 600;
    if (nTopOffset == null) nTopOffset = 50;
    if (nLeftOffset == null) nLeftOffset = 50;
    if (sConfirmText == true) sConfirmText = "Note: You are leaving the Smartgivers website.";

    if (sConfirmText != null && sConfirmText != true) sConfirmText = "Note: You are leaving the Smartgivers website.";

    var sAlert;

    //disable per BETA tester
    if (sConfirmText != null && sConfirmText != false) {
        if (confirm(sConfirmText)) {
            mywindow = window.open(sLocation, sWindowName, "location=1, resizable=1, status=1,scrollbars=1,width=" + nWidth + ",height=" + nHeight);
            mywindow.moveTo(nTopOffset, nLeftOffset);
        }
    }
    else {
        mywindow = window.open(sLocation, sWindowName, "location=1, resizable=1, status=1,scrollbars=1,width=" + nWidth + ",height=" + nHeight);
        mywindow.moveTo(nTopOffset, nLeftOffset);
    }


}
