// Scriptsammlung fuer Oxyphen AG, Schweiz
// Copyright by images + words nuernberg, 2002
// No copies without written permission by images + words

// Rahmen durch mouseover sichtbar oder unsichtbar machen

stdBrowser = (document.getElementById) ? true : false
	
		function disappear(currElem) {
			popUpWin = (stdBrowser) ? document.getElementById(currElem).style : eval("document." + currElem)
			popUpWin.visibility = "hidden"
		}

		function appear(currElem) {
			popUpWin = (stdBrowser) ? document.getElementById(currElem).style : eval("document." + currElem)
			popUpWin.visibility = "visible"
		}

function show1() { appear('portraitframe'); disappear('produktframe'); disappear('technoframe'); disappear('anwendungsframe'); disappear('kontaktframe') }
function show2() { disappear('portraitframe'); appear('produktframe'); disappear('technoframe'); disappear('anwendungsframe'); disappear('kontaktframe') }
function show3() { disappear('portraitframe'); disappear('produktframe'); appear('technoframe'); disappear('anwendungsframe'); disappear('kontaktframe') }
function show4() { disappear('portraitframe'); disappear('produktframe'); disappear('technoframe'); appear('anwendungsframe'); disappear('kontaktframe') }
function show5() { disappear('portraitframe'); disappear('produktframe'); disappear('technoframe'); disappear('anwendungsframe'); appear('kontaktframe') }

// Schliesst alle Submenues

function clearframes() { disappear('portraitframe'); disappear('produktframe'); disappear('technoframe'); disappear('anwendungsframe'); disappear('kontaktframe') }

// Oeffnet Fenster

function openWin(url) {
var win;
win=window.open(url,'Mail','width=700,height=470,status=yes,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,location=yes')
}

function printWin(url) {
var win;
win=window.open(url,'Mail','width=550,height=450,status=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,location=no')
}