var n = 7;
var f = false;
var b = new Array;
function prel(){

   	if(document.images) {
	  for(i=1;i<=n;i++)
               {str = 'i/p' + i + '_o.gif';
               b[i-1] = new Image();
               b[i-1].src = str;
}
            	f = true;
 		}
}
function on(im,td){
	if (document.images && (f == true)) 
		{
		 document.images[im].src = "i/"+im+"_o.gif";
		 document.getElementById(td).className = 'menu_o';
}
		
}
function off(im,td){
	if (document.images && (f == true))
		document.images[im].src = "i/"+im+".gif";
		document.getElementById(td).className = '';
}

function OpenInNewWin(href_link, width, height)
{
	window.open(href_link,'','directories=no,location=no,resizable=no,status=no,toolbar=no,scrollbars=yes,width='+parseInt(width)+',height='+parseInt(height));
}
