/* ======================================================================
FUNCTION:	oeffneFenster(welchesDennNun)
 
INPUT: 		URL

RETURN:		none.

DESC:		URL wird in einem neuen Fenster geoeffnet werden soll.
			
USAGE:		<a href="javascript:oeffneFenster('http://www.domain_abc.de/xyz')">Link Name</a>;

PLATFORMS:	Netscape Navigator 3.01 and higher,
			  	Microsoft Internet Explorer 3.02 and higher,
			  	Netscape Enterprise Server 3.0,
			  	Microsoft IIS/ASP 3.0.
====================================================================== */
//flyingWindow oeffnen
function oeffneFenster(welchesDennNun) {
	wetterWindow = window.open(welchesDennNun, "fenstername", "height=400,width=600,status=no,toolbar=yes,menubar=no,scrollbars=yes,resizable=yes");
  	wetterWindow.focus();
}

//flyingWindow oeffnen
function oeffneWapbrowser(welchesDennNun) {
	wapbrowserWindow = open(welchesDennNun, "wetter", "height=400,width=200,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
  	wapbrowserWindow.focus();
}

//Webcam-Fenster öffnen
function webcam()
{
	window.open("http://www.heagmedianet.de/webcam.php3?action=lui","webcam","width=650,height=355,menubar=no,locationbar=no,status=no,stoolbar=no,status=no,scrollbars=no,resizeable=no");
}


