/*************************************************************\
 *	ShowPage - show an image in window with rightclick lock
 *
 *	Copyright (C) 2008, Riccardo 'Rico' Pareschi
 *	This script is released under GPL License.
 *	Feel free to use this script (or part of it) wherever you need
 *	it ...but please, give credit to original author. Thank you. :-)
 *	We will also appreciate any links you could give us.
 *	http://www.rico54.com
 *
 *  usage: <script type="text/javascript" src="ShowPage.js"></script>
 *
 *	Enjoy! ;-)
 * -----------------------------------------------------------
 * last update: 04.10.2008
\*************************************************************/
		// show an image in a window
		function ShowPage(ifile,ix,iy) { 
		  var win;
		  win = window.open("","fileviewer","width="+ix+",height="+iy+",menubar=0,toolbar=0,scrollbars=0,resizable=1");
		  win.document.location.href = ifile;
		  win.document.close();
		} // ShowPage


