<!--
function click()
{ if (event.button==2) {
alert('"Thank you for your interest. Copyright ©1998-2010 JoeDiverAmericaTM All Rights Reserved. Designated trademarks and brands are the property of their respective owners."'); 
}
}
document.onmousedown=click 
// -->


//Disable select-text script (IE4+, NS6+)
//Place in Head

function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


<!--
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
win = window.open(mypage,myname,settings)
}
// -->