function imgFullSize(id,iWidth,iHeight){
	
	( iWidth > screen.width * 0.8 ) ? wWidth = screen.width * 0.8 : wWidth = iWidth; 
	( iHeight > screen.height * 0.8 ) ? wHeight = screen.height * 0.8 : wHeight = iHeight; 
	window.open ("image.php?id="+id,"","location=0,status=0,scrollbars=0,resizable=yes,width="+wWidth+",height="+wHeight);
	//win.document.write("<body style=\"margin:0;\"><img src=\"/upimages/"+id+".jpg\" width=\""+iWidth+"\" height=\""+iHeight+"\"></body>"); 
		
}
