function showImage( oImg, x, y )
{
	var picwindow = window.open("", "image", "width=" + x + ",height=" + y + ",scrollbars=no");
	picwindow.document.write("<html><head><title></title></head><body leftmargin=\"0\" topmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\" marginheight=\"0\" marginwidth=\"0\" bgcolor=\"#FFFFFF\">");
	picwindow.document.write("<img src=\"" + oImg + "\" width=\"" + x +"\" height=\"" + y + "\"></body></html>");
	picwindow.document.close();
}

function showImageAsIs( oImg )
{
	var picwindow = window.open("", "image", "scrollbars=yes,resizable=yes,dependent=no");
	picwindow.document.write("<html><head><title></title></head><body leftmargin=\"0\" topmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\" marginheight=\"0\" marginwidth=\"0\" bgcolor=\"#FFFFFF\">");
	picwindow.document.write("<img src=\"" + oImg + "\"></body></html>");
	picwindow.document.close();
}

function showImageAsBrowser( oImg )
{
   var x = window.outerWidth;
   var y = window.outerHeight;
	var picwindow = window.open("", "image", "width=" + x + ",height=" + y + ",scrollbars=yes,resizable=yes,dependent=no");
	picwindow.document.write("<html><head><title></title></head><body leftmargin=\"0\" topmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\" marginheight=\"0\" marginwidth=\"0\" bgcolor=\"#FFFFFF\">");
	picwindow.document.write("<img src=\"" + oImg + "\"></body></html>");
	picwindow.document.close();
}

