//  ----------------- begin right-click lockout script --------------------- 
//  Original:  Martin Webb (martin@irt.org) 

//  This script and many more are available free online at 
//  The JavaScript Source!! http://javascript.internet.com 


function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("Sorry, you do not have permission to right click.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

//  -----------------end right-click lockout script--------------------- 

// -------------------- Start blocker-safe Popup scripting -----------------------------

function child1Open (link, name)
{
win=window.open(link,name,"menubar=no,status=no,directories=no,resizable=no,scrollbars=no,height=250,width=350,left=200,top=100");

}

function child2Open (link, name)
{
win=window.open(link,name,"menubar=no,status=no,directories=no,resizable=yes,scrollbars=yes,height=670,width=780,left=80,top=-20");

}

// -------------------- End blocker-safe Popup scripting -----------------------------

// -------------------- start favorites popup scripting -----------------------------

function addbookmark()
{
bookmarkurl="http://www.1800808prep.com/"
bookmarktitle="Keshwani Prep, test prep"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

// -------------------- end favorites popup scripting -----------------------------

