var NS = (navigator.appName=="Netscape") ? true : false; 

function fit_img () { 
	document.images[0].style.width = '500px';
	document.images[0].style.display = 'inline';
	//win_w = (NS) ? window.innerWidth : document.body.clientWidtht;
	//win_h = (NS) ? window.innerHeight : document.body.clientHeight;
	img_x = document.images[0].width + 10;
	img_y = document.images[0].height + 69;
	//img_x_diff  = img_x - win_w; 
	//img_y_diff = img_y - win_h; 
	win_x = (screen.availWidth - img_x) / 2;
	win_y = (screen.availHeight - img_y) / 2;
	win_x = win_x < 0 ? 0 : win_x;
	win_y = win_y < 0 ? 0 : win_y;
	//alwaysLowered = false;
	document.images[0].style.display = 'none';
	//window.setTimeout(function() {
		window.resizeTo(img_x, img_y); 
		window.moveTo(win_x, win_y);	
		document.getElementById('loading_div').style.display = 'none';
		document.images[0].style.display = 'inline';
	//},10);
	return true;
}; 
function show_img(img_src) {
var win1 = window.open("","win_name","resizable=no,menubar=no,toolbar=no,statusbar=no,location=no,scrollbars=no,dialog=yes,width=0,height=0"); //width=0,height=0,top=-2000,left=-2000
	with (win1) {
		//alwaysLowered = true;
		document.open();
		document.write("<html><head><title>Image Preview</title><script type='text/javascript' src='/tools/js/popup.js'></script><style type='text/css'>html,body{padding:0;margin:0;}img {width:100%;}</style></head><body bgcolor='FFFFFF' onblur='try{window.setTimeout(new function(){window.close();return false;},1000);}catch(e){};' onload='fit_img();' style='display:inline;'><center><img src='"+img_src+"' style='position:relative;z-index:1;display:none;'/><div id='loading_div' style='background-color:#FFFFFF;top:0;left:0;text-align:left;width:100%;height:100%;position:absolute;z-index:10;'>Loading...</div></center></body></html>");
		document.close();
		focus();
	};
	return true;
};
