

// PRELOADING IMAGES


if (document.images) {
 img1_on =new Image(); img1_on.src ="images/skipover.jpg"; 
 img1_off=new Image(); img1_off.src="images/skip.jpg"; 
 img2_on =new Image(); img2_on.src =""; 
 img2_off=new Image(); img2_off.src=""; 
 img3_on =new Image(); img3_on.src =""; 
 img3_off=new Image(); img3_off.src=""; 
}

function movr(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_on.src');
}

function mout(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_off.src');
}

function handleOver() {
 if (document.images) 
  document.imgName.src=img_on.src;
}

function handleOut() {
 if (document.images) 
  document.imgName.src=img_off.src;
}

function hidestatus(){
window.status=''
return true
}

function no_right_click() 
{
 if (event.button==2) 
  {
  alert('Sorry! WRUK does not allow right click!');
  }
}

function newWindow(file,window) { 
msgWindow=open(file,window,'height=330,width=300,resizable=no');
 if (msgWindow.opener == null) msgWindow.opener = self; 
} 


document.onmousedown=no_right_click;






if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus;
document.onmouseout=hidestatus;



