function Resize(ths)
{
		ths.onmouseover = function()
			{
				ths.style.cursor='hand';
			};
		ths.onmouseout = function()
			{
				ths.style.cursor='normal';
			};
		ths.onclick = function()
			{
				var pth="";
				if (document.location.pathname.indexOf("admin")!="-1") pth="../";
				newWindow(pth + "loadPic.php?pic=" + ths.src + "&full=yes&width=" + window.screen.availWidth + "&height=" + window.screen.availHeight);
			};
}


function newWindow(pge)
{
//h=window.screen.availHeight;
//w=window.screen.availWidth;

//l=window.screen.availWidth/2-(w/1.5)/2;
//t=window.screen.availHeight/2-(h/1.5)/2;

   var win = window.open(pge,"SS5","top=0,left=0,buttons=no,scrollbars=no,location=no,menubar=no,titlebar=no,resizable=yes,status=no,directories=no,toolbar=no,fullscreen=no");
}