// Copyright 2002 Adib Fricke, http://adibfricke.com//---------------------------------------------------------------------------Display Window	var theName=window.navigator.appName.toLowerCase();	var thePlatform = navigator.appVersion.toLowerCase();	function open_this(page){				switch(page){		case "reise":			page = "die-reise/";			break;		case "raumschiff":			page = "archive/raumschiff.htm";			break;		case "spaceship":			page = "archive/spaceship.htm";			break;}		var setHeight = 0	var setWidth = 0		if( thePlatform.lastIndexOf('win')!= -1){		//win		if ( theName.indexOf("microsoft")!= -1 ){				//explorer				setWidth = 10;				setHeight = 30;		}		else{			if (theName.indexOf("netscape")!= -1){				//netscape				if(navigator.appVersion.substring(0,1) == "4"){					setWidth = 10;					setHeight = 28;				}else{					setWidth = 6;					setHeight = 26;				}			}			else{				//others (win)				setWidth = 10;				setHeight = 30;			}		}	}	else{		if (thePlatform.lastIndexOf('mac') != -1) {				//MAC							if ( theName.indexOf("microsoft")!= -1 ){				//explorer				setWidth = 32;				setHeight = 80;			}else{				//netscape & others				setWidth = 10;				setHeight = 30;			}			}else{				//all others				//alert(' others');				setWidth = 10; 				setHeight = 30; 		}	}	var winWidth = screen.availWidth - setWidth;	var winHeight = screen.availHeight - setHeight;	var winSize = 'width=' + winWidth + ',height=' + winHeight;		nWin = window.open(page,"randomWin", winSize);		if ( (thePlatform.lastIndexOf('mac') != -1) && (theName.indexOf("microsoft")!= -1) ) {			nWin.moveTo(10,20);	}else{	nWin.moveTo(0,0);	}}
