// <script type="text/javascript" src="/scripts/defaultStatus.js"></script>

// PREVENT THIS PAGE FROM BEING DISPLAYED IN A FRAME
if (top.location != self.location) top.location = self.location;

// DISPLAY MESSAGE IN STATUS BAR
defaultStatus="Latest News: MCRGO membership depreciates";

// DISPLAY POPUP LETTING YOU KNOW YOU ARE LEAVING SITE
// <a href="http://www.123.org/" onclick="return ExitNotice(this.href);">
function ExitNotice(link,site,ltext) {
if(confirm("You are leaving the C.A.R.E. Web site.\n\nYou are going to a Web site that I do not control and whose privacy policies may differ.\n\nThank you for visiting our site!\n\nYou will now access the following link:\n"  + 
"\n" + link + "\n\nPress \'OK\' to proceed, or  press \'Cancel\' .")) 
{ return true; } 
history.go(0);
return false; }

//
// if (document.layers) document.captureEvents(Event.MOUSEMOVE)
// document.onmousemove=mtrack;

// function mtrack(e) {
//   var Text= 'CARE is On Target: ';
//   if (document.layers) Text += e.pageX+','+e.pageY
//   else Text += event.x+','+event.y;
//   window.status= Text;
//}

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}