var NewWindows;
var WinWidth = screen.width - 10;
var WinHeight = screen.height - 60;

function OpenTab(link) {
	var Feature
	if (is.ns4 ||is.ns6||is.mac) {
		WinFHeight = screen.height * 0.83;
	}
	if (is.ie4 || is.ie5 || is.ie6) {
		//WinFHeight = screen.height - 80;
		WinFHeight = screen.height * 0.85;
	}
	if (is.aol) {
		WinWidth = document.body.clientWidth + 145;
		WinHeight = document.body.clientheight;
		WinFHeight = screen.height - 160;
	}
	Feature = "fullscreen=yes,scrollbars=yes,width=" + WinWidth + ",height=" + WinHeight + ",top=0,left=0,location=no,resizable=yes"
	NewWindows = window.open("","Photo",Feature);
	NewWindows.focus();
	NewWindows.document.write("<a href='javascript:window.close()'><img name='show' src='" + link + "' height='" + WinFHeight + "'alt='Click to Close' border='0'></a>");
	NewWindows.document.close();
}  

function PrintPage() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}

