//
// +------------------------------+
// |         JAVASCRIPT           |
// |                              |
// | DATEI:                       |
// | http://www.webmasters2000.de |
// | AUTOR: Hubrig Florian        |
// |        Webmasters2000        |
// | DATUM: 21:40 26.01.2002      |
// +------------------------------+



// Fenster Scirpt ---------------------------------------------------------------

function fenster(variable1,variable2,variable3)
{
window.open( variable1 , variable2 ,  variable3 )
}


// Drop Down Menü ---------------------------------------------------------------

function link(j)
 {
  if(j == "no")
   {
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
     return;
   }
  else
   {
     parent.location.href = j;
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
   }
 }


// Mouse Over Menue -------------------------------------------------------------

// Wechselscript 1
point_on = new Image();
point_on.src = "../img_link/point/wm_point_1.gif";
point_off = new Image();
point_off.src = "../img_link/point/wm_point_0.gif";


// Funktionsaufruf 1
function change(point_var) {
 	document [point_var].src = eval("point_on" + ".src");
	}

function restore(point_var) {
	document [point_var].src = eval("point_off" + ".src"); 
	}

// Wechselscript 2
point_on_1 = new Image();
point_on_1.src = "../img_link/point/wm_point_2.gif";
point_off_1 = new Image();
point_off_1.src = "../img_link/point/wm_point_0.gif";


// Funktionsaufruf 2
function change_a(point_var_a) {
 	document [point_var_a].src = eval("point_on_1" + ".src");
	}

function restore_a(point_var_a) {
	document [point_var_a].src = eval("point_off_1" + ".src"); 
	}



