//-----------------------------
// PopUp Fenster
function show(mypage, myname, w, h, scroll) {
  var winbreite = (screen.width - w) / 2;
  var winhoehe = (screen.height - h - 35) / 2;
  winprops = 'dependent=no,height='+h+',width='+w+',top='+winhoehe+',left='+winbreite+',scrollbars='+scroll+',resizable=no';
  popup = window.open(mypage, myname, winprops);
  if (parseInt(navigator.appVersion) >= 4) { popup.window.focus(); }
  }


//-----------------------------
//Sidebars
//NN
 function makesidebar()
{
if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function"))
{ window.sidebar.addPanel ("::||jawl||::","http://www.jawl.net/sidebar.php",""); }
}


// IE
function addleiste() {
var sBarName = "::||jawl||::";
var sBarURL = "http://www.jawl.net/sidebar";
var sGrayIconURL = "http://www.jawl.net/favicon.ico";
var sColorIconURL = "http://www.jawl.net/favicon.ico";
var sSize = "";
var bSize = false;
var sOMAccess = "full";

window.external.AddBar(sBarName,
sBarURL,
sGrayIconURL,
sColorIconURL,
sSize,
bSize,
sOMAccess);
}

// Formular Focus
function form()
{
  document.form.comment_text.focus();
}

//-->