function SpawnWindow(ImagePath)
{
	xposition=0; yposition=0;
   	args = "WIDTH=0," 
	   	+ "height=0," 
	   	+ "location=0," 
	   	+ "menubar=0,"
	   	+ "resizable=0,"
	   	+ "scrollbars=0,"
	   	+ "status=0," 
	   	+ "titlebar=0,"
	   	+ "toolbar=0,"
	   	+ "hotkeys=0,"
	window.open("_ViewImage.php?sImagePath=" + ImagePath,"Image",args);
}
