
	function PopupPic(sPicURL) {
		   var screenWidth = screen.availWidth;
		   var screenHeight = screen.availHeight;
		   var x = (screenWidth/2)-(400/2);
		   var y = (screenHeight/2)-(400/2);
		   window.open("popup.html?"+sPicURL,"","screenX="+x+",left="+x+",screenY="+y+",top="+y+",resizable=false,HEIGHT=200,WIDTH=200, scrollbars=yes");
	}

function closeall(out){
	for(var i=1;i<7;i++){
		if(out!='id'+i){
			$('id'+i).hide()
		}
	}
}