// ************************************ ROLLOVER ************************************

// Rollover fuer Marginalie1 => Menuepunkt hervorheben
function highlight_margin1(el)	{
	el.style.background='#B5C5DA';
	el.style.border='solid';
	el.style.borderWidth='1px';
	el.style.borderColor='#B5C5DA';
}

// Rollover fuer Marginalie => Menuepunkt normal
function delight_margin1(el)	{
	el.style.background='#E8EDF3';
	el.style.border='solid';
	el.style.borderWidth='1px';
	el.style.borderColor='#E8EDF3';
}

// Rollover fuer Marginalie2 => Menuepunkt hervorheben
function highlight_margin2(el)	{
	el.style.background='#F3D6B5';
	el.style.border='solid';
	el.style.borderWidth='1px';
	el.style.borderColor='#F3D6B5';
}

// Rollover fuer Marginalie => Menuepunkt normal
function delight_margin2(el)	{
	el.style.background='#F4E7D7';
	el.style.border='solid';
	el.style.borderWidth='1px';
	el.style.borderColor='#F4E7D7';
}


// ************************************ GESUNDHEITSMANAGER ************************************

// Öffnen des Fensters "mein Tagebuch"
function opentb(tb_param) {
  window.open('http://dms.wissen-gesundheit.de/usrcheck.asp?param='+tb_param,'dms','');
  }


// ************************************ GLOSSAR ************************************

// Öffnen des Fensters "Glossar"
function openglossar(lid,glchr,glstr) {
  window.open('glossar/glossar.asp?lid='+lid+'&glchr='+glchr+'&glstr='+glstr,'glossar','scrollbars=yes,toolbar=no,status=no,width=579,height=480');
  }


// ************************************ KOMMENTAR ************************************

// Öffnen des Fensters "Kommentar"
function writecomment(urlparam) {
  window.open('pop/pop_comment_write.asp?'+urlparam,'writecomment','scrollbars=no,toolbar=no,status=no,width=570,height=600');
  }

// ************************************ DRUCKVERSION ************************************

// Öffnen des Fensters "mein Tagebuch"
function openprint(urlparam) {
  window.open('content_print.asp?'+urlparam,'print','scrollbars=yes,toolbar=no,status=yes,width=550,height=600');
  }

// ************************************ MESSAGE ************************************

// Öffnen des Fensters "New Msg"
function opennewmsg(strURL) {
  window.open('pop/pop_newmsg.asp?'+strURL,'newmsg','scrollbars=no,toolbar=no,status=yes,width=200,height=300');
  }


// ************************************ LOGOUT ************************************

// Öffnen des Fensters "New Msg"
function openlogout(strURL) {
  window.open('pop/pop_logout.asp?'+strURL,'logout','scrollbars=no,toolbar=no,status=yes,width=200,height=300');
  }


// ************************************ FRAGEN SIE DR GERHARDT ************************************

// Öffnen des Fensters "New REQUEST"
function opendrgerhardt(strURL) {
  window.open('pop/pop_requestdoc.asp?'+strURL+'&flg_cookie_del=1','FrageDrGerhardt','scrollbars=yes,toolbar=no,status=yes,width=650,height=507');
  }



// ************************************ FENSTER SCHLIESSEN ************************************

// Schliessen eines Fensters
function closepop() {
  window.close();
  }

// Schliessen des Fensters und Reload
function closepoprld() {
  window.opener.location.reload();
  self.close();
  }

// Schliessen des Fensters und Reload anderer Seite
function closepoprldpage(reloadlocation) {
  window.opener.location = reloadlocation;
  self.close();
  }


// ************************************ MARGIN SHOW ************************************

function dhtml_show_hide(e,f,visible) {
  if (visible == "true") {
     e.style.display = "";
     f.style.display = "none";
  } 
}


// ************************************ Open Close Comment ************************************
function dhtml_show_hide_comment(e,bt,showlabel,hidelabel) {
  if (e.style.display == "none") {
     e.style.display = "";
     bt.innerHTML = showlabel;
  } else {
     e.style.display = "none";
     bt.innerHTML = hidelabel;
  }
}


function openflash(strURL) {
  window.open(strURL,'flash','width=675,height=670,left=10,top=10');
}

function openGalery(param) {
  window.open('pop/pop_galery.asp?'+param,'Galerie','width=788,height=650,scrollbars=auto,resizable=false,screenX=10,screenY=10');
}

function openVideo(titel, param) {
  window.open('pop/pop_video.asp?title='+ titel +'&file='+ param,titel,'width=680,height=640,status=no,resizable=yes');
}
function openVideo2(titel, param) {
  window.open('pop/pop_video2.asp?title='+ titel +'&file='+ param,titel,'width=840,height=610,status=no,resizable=yes');
}
function openVideo3(title, param) {
  window.open('http://video.wissen-gesundheit.de/pop_video16.asp?title='+ title +'&file='+ param, title, 'width=840,height=610,status=no,resizable=yes');
}

function openAudio(param) {
  window.open('pop/pop_audio.asp?'+ param,'Audio','width=678,height=320,scrollbars=no,resizable=false,screenX=10,screenY=10');
}

function SwapMagazin(type) {
  if (type == 'footer') {
    document.getElementById('magazin_footer').style.display='none';
    document.getElementById('magazin_teaser').style.display='block';
  } else if (type == 'teaser') {
    document.getElementById('magazin_teaser').style.display='none';
    document.getElementById('magazin_footer').style.display='block';
  }
}