var isLink=false;

function closeDep() {
  if (win && win.open && !win.closed) win.close();
}

function doClose()
{
        if(!isLink)
        {
                myPopup = window.open("", "myPopup", "scrollbars=no,location=no,screenY=200,screenX=400,status=no,titlebar=no,toolbar=no,resizeable=no,height=150,width=350");
                myPopup.document.write("<html><head><title>Offer!</title>");
                myPopup.document.write("<style type=\"text/css\">* {margin: 0; padding: 0}img {border:none}</style>");
                myPopup.document.write("</head><body  style=\"background-color:#DEE3FF;\">");

                myPopup.document.write("&nbsp;&nbsp;&nbsp;&nbsp; <p style=\"font-size:20px;font-family:times\">Wait!!.  You have been chosen for a special 10%discount, Click on ok to avail this offer.</p>");
                myPopup.document.write("&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"http://www.niconot.com/order.php?discount\" target=\"_blank\" onclick=\"window.close()\"><img src=\"images/ok.gif\"></a>");
                myPopup.document.write("&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"#\" onclick=\"window.close()\" ><img src=\"images/cancel.gif\"> </a>");
                myPopup.focus();

        }
        return true;
}

function anchorChange() {
    var anchors = document.getElementsByTagName("a");
    var size = anchors.length;

    for (var i = 0; i < size; i++) {
        anchors[i].onclick = function () {
	    isLink=true;
            return true;
        };
    }
}
