function newWindow(fileURL,width,height) {
	w = width;
	h = height+110;
	options='width='+w+',height='+h;
	okno=window.open(fileURL,'',options);
}

function showHide(id){
object = document.getElementById(id);

if (object.style.display == "none"){
object.style.display='';
}else{
object.style.display='none';}
}

