
function new_window(path, height, width){
	faktur="height="+height+", width="+width+", "+
		"scrollbars=no, menubar=no, statusbar=no, resizable=no";
	window.open(path, null, faktur);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function mOvr(src, clrOver) {
      if (!src.contains(event.fromElement) && navigator.appName != 'Netscape') {
        src.style.cursor = 'default';
        src.bgColor = clrOver;
      }
    };
function mOut(src, clrIn) {
      if (!src.contains(event.toElement) && navigator.appName != 'Netscape') {
        src.style.cursor = 'default';
        src.bgColor = clrIn;
      }
    }
function OpenClose(sObject) {
	window.event.returnValue = false
	var oObject = document.all('s' + sObject)
	var oImg = document.all('Img' + sObject)
	if (oObject.style.display == 'none') {
		oObject.style.display = 'block'
		if(oImg) {oImg.src = oImg.src.replace(/Open/g, 'Close')
		oImg.alt = 'Close'}
	} else {
		oObject.style.display = 'none'
		if(oImg) {oImg.src = oImg.src.replace(/Close/g, 'Open')
		oImg.alt = 'Open'}
	}
}

