// Neue Fenster als Popup oeffnen
// Link auf Fördermitteldatenbank unter beewusst bauen 
function stock()  
{
window.open('http://ir2.flife.de/data/sto/sto_kuchart_e.php','newwindow' ,'width=520,height=435,scrollbars=auto,resizable=yes,left=50,top=50');
}
// Link auf Fördermitteldatenbank unter bewusst bauen 
function foerderung()
{
window.open('http://www.foerdermittelauskunft.de/extern/sto/','newwindow' ,'width=520,height=520,scrollbars=auto,resizable=yes,left=60,top=30');
}
// Produktkatalog unter Inotec
function imatrokatalog()
{
window.open('http://www.imatro.de/is-bin/INTERSHOP.enfinity/eTS/eMart/-/-/-/CX_OpenEMartFrameset-OpenEMartFrameset?link=/is-bin/INTERSHOP.enfinity/eCS/eMart/de_DE/-/-/EB_Catalog-Start?SellerCompanyName=inotec&CategoryName=inotec','newwindow','scrollbars=auto,menubar=no,height=800,width=1000,resizable=yes,toolbar=no,location=no,status=no');
}
// Neus Fenster für Prinsdurchgriff
function popup(myurl,/*optionale paramter:*/file, pWidth, pHeight, pCenter)
	{
	
		<!-- encoding für sonderzeichen im file namen -->
		var request = "";
		if(file && (file != ""))
		{
			request = myurl + '&file=' + encodeURIComponent(file);
		}
		else
		{
			request = myurl;
		}
		var width = 300;
		var height = 300;
		if(pWidth && pWidth != "")
		{
			width = pWidth;
		}
		if(pHeight && pHeight != "")
		{
			height = pHeight;
		}
		
		var arguments = "alwaysRaised=1,toolbar=0,status=0,location=0,directories=0,menubar=0,resizable=yes,scrollbars=yes,width=" +width+ ",height=" +height;
		if(pCenter && pCenter == "center")
		{	
			var windowPosition = new Array();
			var resW = screen.availWidth;
			var resH = screen.availHeight;
			windowPosition[0] =  (resW/2) - (width/2);
			windowPosition[1] =  (resH/2) - (height/2) + 20;
			arguments += ", left=" +windowPosition[0]+ ", top=" +windowPosition[1];
		}
		neues_fenster = window.open(request, "Detailansicht", arguments);
		neues_fenster.focus();
	}