//
// Select Browser and Function onMouseOver
//

browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion); 

if (browser_name == "Netscape" && browser_version < 2.0)
	{
	roll = 'false';
	}
else if (browser_name == "Netscape" && browser_version == 2.0)
	{
	roll = 'false';
	}
else if (browser_name == "Netscape" && browser_version >= 4.0)
	{
	roll = 'true';
	}
else if (browser_name == "Netscape" && browser_version >= 3.0 && navigator.appVersion.indexOf("Mac") > 0)
	{
	roll = 'false';
	}	
else if (browser_name == "Netscape" && browser_version >= 3.0)
	{ 
	roll = 'true';
	}
else if (browser_name == "Microsoft Internet Explorer" && browser_version <= 2.0)
	{
	roll = 'false';
	}
else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0)
	{
	roll = 'true';
	}
else
	{
	roll = 'false';
	}

function msover(img,ref)
	{
		if (roll == 'true')
			{
			document.images[img].src = ref;
			}
	}
	
function msout(img,ref)
	{
		if (roll == 'true')
			{
			document.images[img].src = ref;
			}
	}
	
//---------------------------------------------------------

//
//	select the url's url1 and url2 in the frames f1 and f2 of the parent frame
//
function ZweiFrames(URL1,F1,URL2,F2)
{ 
	parent.frames[F1].location.href=URL1;
	parent.frames[F2].location.href=URL2; 
} 

//---------------------------------------------------------

//
//	PopUp Window
//

function openWin( windowURL, windowName, windowFeatures ) 
	{ 
		return window.open( windowURL, windowName, windowFeatures ) ; 
	}

//---------------------------------------------------------

