
function blockError(){return true;}
window.onerror = blockError;


// -------------------- open BLOCKER-SAFE POPUP scripting -----------------------------

function child1Open (link, name)
{
win=window.open(link,name,"menubar=no,status=no,directories=no,resizable=yes,scrollbars=yes,height=640,width=540,left=100,top=200");

}

function child2Open (link, name)
{
win=window.open(link,name,"menubar=no,status=no,directories=no,resizable=yes,scrollbars=auto,height=690,width=940,left=50,top=-50");

}
function child3Open (link, name)
{
win=window.open(link,name,"menubar=no,status=no,directories=no,resizable=yes,scrollbars=auto,height=450,width=575,left=50,top=20");

}
function child4Open (link, name)
{
win=window.open(link,name,"menubar=no,status=no,directories=no,resizable=no,scrollbars=no,height=455,width=305,left=240,top=200");

}

function child5Open (link, name)
{
win=window.open(link,name,"menubar=no,status=no,directories=no,resizable=no,scrollbars=no,height=200,width=300,left=240,top=200");

}

// -------------------- close BLOCKER-SAFE POPUP scripting----------------

/*
Clear default form value script- By Ada Shimar (ada@chalktv.com)
Featured on Website Abstraction (http://wsabstract.com)
Visit wsabstract.com for 400+ free scripts!
*/

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 

// ----------- start SELF-SIZING BROWSER-FRIENDLY CHILD WINDOW scripting --------------


/* Created by: Crazy Merlin :
http://nl.internet.com/ct.html?rtr=on&s=1,282v,1,83o,6n0z,lizu,hryg
Lee Underwood :
http://nl.internet.com/ct.html?rtr=on&s=1,282v,1,jlzb,dlcr,lizu,hryg
*/
function newWin(link,w,h,s,r,l,t) {
   // the next two lines should all be on one line with no space
     
   var winFeatures = 'width=' + w + ',height=' + h + ',scrollbars=' + s + ',resizable=' + r + ',left=' + l + ',top=' + t ;
   var bookWindow = window.open(link, "", winFeatures); }


// ----------- end SELF-SIZING BROWSER-FRIENDLY CHILD WINDOW scripting --------------
