// Javascript hien thi Image dung kich co cua cua so Popup.
// Javascript open any Image with exactly size.
// Nguoi viet: Ngo Hong Vinh - Trung Tam dien toan, Truyen so lieu KV I (VDCI) - 
// Ngo Hong Vinh - Vietnam Datacommunication
// vinhweb@vdc.com.vn
	
<!-- Begin
function openImage(ImageName) {

//alert (ImageName);
//return;
  		 
  		 		ngovinh=window.open("","Preview","status=no,resizable=yes,width=90,height=110,top=10,left=10"); 
  	  // open the new window with just the title and status bar and name it 'ngovinh'
  ngovinh.document.writeln('<html>');
  ngovinh.document.writeln('<head>');
  ngovinh.document.writeln('<title>'+ImageName+'</title>');   
  	  // put the name of the pic in the title bar
  ngovinh.document.writeln('</head>');

  if (navigator.appName == "Microsoft Internet Explorer") 
  	  // in IE resizeTo give the outer of the window
     ngovinh.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width+20,document.images[0].height+ 40)">');   
		      // resize the window to match the picture

   else
       ngovinh.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width,document.images[0].height+ 20)">');   
          // resize the window to match the picture
  ngovinh.document.writeln('<center><a href="/" onClick=window.close()><img src="'+ImageName+' " border="0">');
  ngovinh.document.writeln("</body></html>");

// load the image in the window
  ngovinh.document.writeln('</body>');
  ngovinh.document.writeln('</html>');
  ngovinh.document.close();
  ngovinh.focus();  // place the window in front
  ngovinh.moveTo((screen.width- 400)/2,(screen.height- 300)/2);
}

//  End -->

