//Popup Script Starts-------------------------------------------------------------------------------------------------

imagename='';
	function enlrge(imgnme) {
		lrgewin=window.open("about:blank","","scrollbars=auto,status=no,left=10,top=10,")
		imagename=imgnme;
		setTimeout('update()',500)
	}
	function win(fileName)
		{
		myFloater=window.open('','myWindow','scrollbars=auto,status=no,left=10,top=10,width=400,height=300')
		myFloater.location.href=fileName;
		}
	function update() {
	doc=lrgewin.document;
	doc.open('text/html');
	doc.write('<HTML><HEAD><TITLE>Anand Motor Products (P) LTD<\/TITLE><\/HEAD><BODY bgcolor="white" onLoad="if  (self.resizeTo)self.resizeTo((document.images[0].width+10),(document.images[0].height+40))" topmargin="4" leftmargin="0" rightmargin="0" bottommargin="0"><table width=""' + document.images[0].width + '" border="0" cellspacing="0" cellpadding="0"><tr><td>');
	doc.write('<IMG SRC="' + imagename + '"><\/td><\/tr>');
	doc.write('<\/table><\/BODY><\/HTML>');
	doc.close();
	}
	
	
//Popup Script Ends-------------------------------------------------------------------------------------------------