

ie = (document.all)? true: false

function mover(txt) {
	window.status = txt;
}

function mout() {
	window.status='';
}


function picEnlarge(imname) {
   oPic = new Image();
   fname = '"' + imname + '"'
   oPic.onload = dispImg;
   oPic.src = (imname);
}

function dispImg() {
	picWidth = parseFloat(oPic.width)+15;
	picHeight = parseFloat(oPic.height)+15;
	features = "toolbar=no,status=no,menubar=no,directories=no,resizable=no,width=" + picWidth + ",height=" + picHeight;
	if (window.picWin && !picWin.closed){
  	  } else {
		picWin = window.open("","", features);
  }
	picWin.document.open("text/html","replace");
	picWin.document.write('<HTML><HEAD><TITLE>- ATOMOS  :: LOCATION OF HEAD OFFICE :: </TITLE></HEAD><body background="images/india.jpg" topmargin="5" leftmargin="5" rightmargin="5" font="bookman old style" size="3" text=#000000><table width="100%" border="3"><tr><td valign="center"><img src=' + fname + ' border="0" alt="[Enlarged View]"></td>  </tr></table></BODY></HTML>');
	picWin.document.close();
	picWin.focus();
}
	

	
