function toggle_div(prefix, id){
	var t = document.getElementById(prefix+id);
	
	if (t.style.display == "none"){
		open_div(prefix, id);
	}else{
		closeAll_div(prefix);

	}
}

function open_div(prefix, id){
	closeAll_div(prefix, id);
	var t = document.getElementById(prefix+id);
	t.style.display = "block";
}

function close_div(prefix, id){

	var t = document.getElementById(prefix+id);
	t.style.display = "none";
	
}

function closeAll_div(prefix) {
	for(i = 0; i < 10; i++) {
		if(document.getElementById(prefix+i)){
			
				close_div(prefix, i);
		
		}
	}
}

function showInLightbox(url, caption, rev){
    Lightbox.show(url, caption, rev);
}

//POPUP
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=810,height=600,left = 400,top = 325');");
}

