//<SCRIPT LANGUAGE="JavaScript">
//Funktion zum gleichzeitigen Ändern des Head-, Site- und Main-Frames
function DreiFrames(url1, url2, url3)
{
  	top['Head'].document.location.href = url1
  	top['Site'].document.location.href = url2
	top['Main'].document.location.href = url3
}

//Funktion zum gleichzeitigen Ändern des Site- und Main-Frames
function ZweiFrames(url2, url3)
{
  	top['Site'].document.location.href = url2
	top['Main'].document.location.href = url3
}
//</SCRIPT>
