//-- Global functions


/*
function check_flash(){
	if(parent.frmmenu.document.flashform.enabled.value==1){
		return true;
	}else{
		return false;
	}
}


function MM_openBrWindow(theURL,winName,features) { 
	whatever=window.open(theURL,winName,features);

}	
*/


function popup(url,name,eigenschaften)
	{
    newwin = window.open(url,name,eigenschaften);
	setTimeout('newwin.focus();',200);
	}

function jump2(URL1, URL2)
	{
	parent.frames[0].location.href=URL1;
	parent.frames[2].location.href=URL2;
	}

function jump3(URL1, URL2, URL3)
	{
	parent.frames[0].location.href=URL1;
	parent.frames[1].location.href=URL2;
	parent.frames[2].location.href=URL3;
	}

function jump4(URL1, URL2, URL3, URL4)
	{
	top.frames[0].location.href=URL1;
	parent.frames[0].location.href=URL2;
	parent.frames[1].location.href=URL3;
	parent.frames[2].location.href=URL4;
	}
