Already a member? Click here
$(document).ready(function () {
$("#downloadExistsPopupCloseBtn").click(function () {
$("#downloadExistsPopup").hide();
});
$("#downloadExistsPopupFindIcon").click(function () {
$("#downloadExistsPopupMoreIcon").show();
});
$("#downloadExists").click(function () {
if ($("#downloadExistsPopup").is(":visible")) {
$("#downloadExistsPopup").hide();
}
else {
$("#downloadExistsPopup").show();
window.location = "#popup";
}
});
/*$('[href]').live('click', function (e) {
if (this.href == 'javascript:followClickHereLink(1);' ||
this.href == 'javascript:followClickHereLink(2);' ||
this.href == 'javascript:followClickHereLink(3);') {
e.preventDefault();
shutDown();
}
});*/
});