pathPics="pics/";
backgroundImage="background.gif";
pathLinkPics="links/";


// preloading images
if (document.images) {
 img_on =new Image();  
 img_on.src =pathPics+"marina_mit_schrift_transparent_filter.gif";
 
 img_off=new Image();  
 img_off.src=pathPics+"neboltaj_transparent.gif"; 

 img_agenda =new Image();     
 img_agenda.src =pathPics+"agenda.gif"; 
 
 img_bio =new Image();        
 img_bio.src =pathPics+"bio.gif"; 
 
 img_link_s =new Image();      
 img_link_s.src =pathPics+"wwwLinks.gif"; 
 
 img_kontakt =new Image();    
 img_kontakt.src =pathPics+"kontakt.gif"; 

 img_presse =new Image();    
 img_presse.src =pathPics+"presse.gif"; 
}

function handleOver() { 
 //if (document.images) 
   document.neboltaj.src=img_on.src;
}

function handleOut() {
// if (document.images) 
   document.neboltaj.src=img_off.src;
}

function callHome(){
  parent.location.href="index.html";
}


function callMenu(){
  parent.location.href="main.html";
}

function callLinks(th){  
  top.location.href="content.php?id="+th.id;
}



function handleMoreOut() {
 if (document.images) {
   document.agenda.src=pathPics+backgroundImage;
   document.bio.src=pathPics+backgroundImage;
   document.wwwLinks.src=pathPics+backgroundImage;
   document.kontakt.src=pathPics+backgroundImage;
   document.presse.src=pathPics+backgroundImage;
 }
}

function handleMoreOver() { 
//  alert("1");
 if (document.images) {
   //alert(img_agenda.src);
   document.agenda.src=img_agenda.src;
   document.bio.src=img_bio.src;
   document.wwwLinks.src=img_link_s.src;
   document.kontakt.src=img_kontakt.src;
   document.presse.src=img_presse.src;
 }
}

function callAdmin(th){

  var linkContent="adminContent.php?menu="+th.id;
  var linkData="adminData.php";

//alert('linkData:'+linkData);
//alert('linkContent:'+linkContent);
  parent["frame_adminContentLeft"].location.href = linkContent;
  parent["frame_adminData"].location.href = linkData;  
}

function resizeOnLoad(_width, _heigth){
  self.resizeTo(_width,_heigth);  
}


function adminData(menu,id){
  //alert(menu + id);
  var linkData="adminData.php?menu="+menu+"&id="+id;
  parent["frame_adminData"].location.href = linkData;  
}

function updateContent(menu){
  //alert(menu);
  var linkContent="adminContent.php?menu="+menu;
  parent["frame_adminContentLeft"].location.href = linkContent;
}

function newElement(th){
  //alert(document.getElementById("newType").value);
  parent["frame_adminData"].location.href = "newElement.php?element="+document.getElementById("newType").value;  
}
function deleteElement(th){
  //alert(document.getElementById("newType").value);
  //alert(document.getElementById("id").value);
  parent["frame_adminData"].location.href = "deleteElement.php?element="+document.getElementById("newType").value+"&id="+document.getElementById("id").value;  
}

function openTemplate(){
 openWindow("../kolumnen/vorlage.html","template","width=250,height=180,left=100,top=100,resizable=yes,location=no,scrollbars=yes,menubar=no,status=no,toolbar=no,directories=no");
}

function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
/*
function ReverseDisplay(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}
*/
function HideAllShowOne(d) {
var IDvaluesOfEachDiv = "open_InnereEnge open_Camp open_Bosnien open_Nachhernachher open_Mordsgeschichten";
//-------------------------------------------------------------
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/[,\s"']/g," ");
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/^\s*/,"");
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/\s*$/,"");
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/  +/g," ");
var IDlist = IDvaluesOfEachDiv.split(" ");
for(var i=0; i<IDlist.length; i++) { HideContent(IDlist[i]); }
ShowContent(d);
}
