function old_goImgWin(Wtitle,myImage,myWidth,myHeight,
 origLeft,origTop) {
myHeight += 24;
myWidth += 24;
TheImgWin = window.open(myImage,'image','height=' +
myHeight + ',width=' + myWidth +
',toolbar=no,directories=no,status=no,' +
'menubar=no,scrollbars=no,resizable=no');

TheImgWin.resizeTo(myWidth+2,myHeight+30);
TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}


/* Contain Add by Rajnikant for shwing Title on Window Page : 03/07/2006*/

function goImgWin(Wtitle,myImage,myWidth,myHeight,
 origLeft,origTop) {

//alert(myImage);

myHeight += 24;
myWidth += 24;
TheImgWin = window.open('','image','height=' +
myHeight + ',width=' + myWidth +
',toolbar=no,directories=no,status=no,' +
'menubar=no,scrollbars=no,resizable=no');


// Write the contain of window
TheImgWin.document.write('<html><head><title>'+Wtitle+'</title>');
TheImgWin.document.write('</head><body>');
TheImgWin.document.write('<img src='+myImage+' border=0 >');
TheImgWin.document.write('</body></html>');
TheImgWin.resizeTo(myWidth+2,myHeight+30);
TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


/* End */