<!--
// PRELOADING IMAGES
if (document.images) {

 img1_on =new Image(); img1_on.src ="/commonFiles/images/on_03.gif"; 
 img1_off=new Image(); img1_off.src="/commonFiles/images/common_03.gif"; 

 img2_on =new Image(); img2_on.src ="/commonFiles/images/on_06.gif"; 
 img2_off=new Image(); img2_off.src="/commonFiles/images/common_06.gif"; 

 img3_on =new Image(); img3_on.src ="/commonFiles/images/on_09.gif"; 
 img3_off=new Image(); img3_off.src="/commonFiles/images/common_09.gif"; 

 img4_on =new Image(); img4_on.src ="/commonFiles/images/on_12.gif"; 
 img4_off=new Image(); img4_off.src="/commonFiles/images/common_12.gif"; 

 img5_on =new Image(); img5_on.src ="/commonFiles/images/on_15.gif"; 
 img5_off=new Image(); img5_off.src="/commonFiles/images/common_15.gif"; 

 img6_on =new Image(); img6_on.src ="/commonFiles/images/on_18.gif"; 
 img6_off=new Image(); img6_off.src="/commonFiles/images/common_18.gif"; 
}

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;
}

//-->