﻿// Javascript hien thi Image dung kich co cua cua so Popup.
// Nguoi viet: Ngo Hong Vinh - Web Center - 
// Trung Tam dien toan, Truyen so lieu KV I (VDCI) - 
// Ngo Hong Vinh - Web Center - Vietnam Datacommunication
// vinhweb@vdc.com.vn
	
<!-- Begin
function openImage(ImageName) {

//alert (ImageName);
//return;
  PopUpWindow=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 'PopUpWindow'
  PopUpWindow.document.writeln('<html>');
  PopUpWindow.document.writeln('<head>');
  PopUpWindow.document.writeln('<title>'+ImageName+'</title>');   
  	  // put the name of the pic in the title bar
  PopUpWindow.document.writeln('</head>');

  if (navigator.appName == "Microsoft Internet Explorer") 
  	  // in IE resizeTo give the outer of the window
     PopUpWindow.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
       PopUpWindow.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
  PopUpWindow.document.writeln('<center><a href="/" onClick=window.close()><img src="'+ImageName+' " border="0">');
  PopUpWindow.document.writeln("</body></html>");

// load the image in the window
  PopUpWindow.document.writeln('</body>');
  PopUpWindow.document.writeln('</html>');
  PopUpWindow.document.close();
  PopUpWindow.focus();  // place the window in front
}

//  End -->

