//	ShowImage.js
//
//	Author: Michel Uiterwijk
//
//	Version Information 
//	1.0		2005.01.10		Base version
//
//	The above comment must stay intact for use. Not for resale.

function show_image(imagename,sizex,sizey)
{
	intWidth = sizex + 32; 
	intHeight = sizey + 33;  //this is ment for isric logo
	
	strWinProp = "toolbar=no"         //Back, Forward, etc...
               + ",location=no"      //URL field
               + ",directories=no"   //"What's New", etc...
               + ",status=no"       //Status Bar at bottom of window.
               + ",menubar=no"       //Menubar at top of window.
               + ",resizable=no"     //Allow resizing by dragging.
               + ",scrollbars=no"     //Displays scrollbars is document is larger than window.
               + ",titlebar=yes"       //Enable/Disable titlebar resize capability.
               + ",width="+intWidth       //Standard 640,800/788, 800/788
               + ",height="+intHeight      //Standard 480,600/541, 600/566               
               + ",top=95"              //Offset of windows top edge from screen.
               + ",left=0"             //Offset of windows left edge from screen.
               + "";
	window.open(imagename,"imgwin",strWinProp);void(''); 
}