function openWin(link,id,w,h){
	if(!w)	
		w = 430;
	if(!h)
		h = 456;
	window.open(link,"w"+id,"width="+w+"px,height="+h+"px,status=no,toolbar=no,menubar=no,scrollbars=yes");
}

function replaceHeader(im){
	var hob = document.getElementById("header")
	hob.style.backgroundImage = "url('"+im+"')";
}

function showPhoto(pid,tab){
	
	var table = 'ts_photos';
	if(tab)
		table = tab;
	popupcontent_o.showContent({'type': 'photos', 'id': pid, 'table': table});
	
}

var cur_index = 1;

function nextPhoto(dst){

	cur_index = parseInt(document.getElementById("cur_index").innerHTML);

	var np = cur_index + dst;
	if(np > photos.length)
		np = 1;
	else
		if(np < 1)
			np = photos.length;
	cur_index = np;
	
	var nw = photos[cur_index-1][1]<100?140:photos[cur_index-1][1]+40;
	var nh = photos[cur_index-1][2] + 140;
	
	var ob = document.getElementById("popup_content");
	ob.style.width = nw + "px";
	ob.style.height = nh + "px";
	
	popupdiv_o.resize();	
	
	document.getElementById("big_photo").src = photos[cur_index-1][0];
	document.getElementById("photo_description").innerHTML = photos[cur_index-1][3];
	document.getElementById("cur_index").innerHTML = cur_index;

}