/*function goImgWin(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=yes,' +'menubar=no,scrollbars=no,resizable=no');

// Write the contain of window
TheImgWin.document.write("<html><head><title>"+Wtitle+"</title>");
TheImgWin.document.write("</head><body leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0'>");
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();
}

/* End */
