//'ششششششششششיוסי כהןشششششششششش

var tabSelected=0;
var selectedColor="#ffffff";
var unSelectedColor="#f2f8ff";
var lineColor="#787878";

function clickTab(tabNum){
	if (tabSelected!=tabNum){

		//Old tab num Selected:		
		document.getElementById("tab"+tabSelected).style.display="none";
		document.getElementById("tab-l-"+tabSelected).style.backgroundColor=unSelectedColor;
		document.getElementById("tab-m-"+tabSelected).style.backgroundColor=unSelectedColor;
		document.getElementById("tab-r-"+tabSelected).style.backgroundColor=unSelectedColor;
		document.getElementById("Ltab-l-"+tabSelected).style.backgroundColor=lineColor;
		document.getElementById("Ltab-m-"+tabSelected).style.backgroundColor=lineColor;
		document.getElementById("Ltab-r-"+tabSelected).style.backgroundColor=lineColor;

		//New tab num Selected:		
		document.getElementById("tab"+tabNum).style.display="";
		document.getElementById("tab-l-"+tabNum).style.backgroundColor=selectedColor;
		document.getElementById("tab-m-"+tabNum).style.backgroundColor=selectedColor;
		document.getElementById("tab-r-"+tabNum).style.backgroundColor=selectedColor;
		document.getElementById("Ltab-l-"+tabNum).style.backgroundColor=selectedColor;
		document.getElementById("Ltab-m-"+tabNum).style.backgroundColor=selectedColor;
		document.getElementById("Ltab-r-"+tabNum).style.backgroundColor=selectedColor;
		
		tabSelected=tabNum;
	}
}

var winW = screen.width-40;
var winH = screen.height-40;
var prwin;

function openPicWin(picname){
	prwin=window.open("picview.html?" + picname,"newBwin","width="+ winW +",height="+ winH +", top=20, left=20, toolbar=no, menubar=no, status=no");
}
