/*<![CDATA[*/
/**
 * functions.js - Bibliothek mit uebergreifenden JavaScript Funktionen
 *
 * Copyright (c) 2007    die.interaktiven GmbH & Co. KG
 *                       Agentur für digitale Medien
 *                       Eisenmarkt 1
 *                       35578 Wetzlar
 *                       Germany
 *
 *                       Fon: +49 (0)64 41 / 39 86 19 - 0
 *                       Fax: +49 (0)64 41 / 39 86 19 - 9
 *                       Web: www.die-interaktiven.de
 *
 * Alle Rechte vorbehalten. Unberechtigte Kopie und Weiter-
 * verwendung nicht gestattet.
 *
 */

function doStart()
{
	if(window.location.search.indexOf('druck') != -1)
	{
		setStyle('druck');
	}
	
	setStatus('Delta Handwerk - Und alles geht leichter');
}

function setStatus(sText)
{
	if(!sText) sText = '';
	window.status = sText;
	return true;
}

function showPopup(sUrl, sName, iBreite, iHoehe, sFeatures, iPosx, iPosy)
{
	var oWin = window.open(sUrl, sName,"width=" + iBreite + ",height=" + iHoehe + "," + sFeatures + "");
	
	if(oWin)
	{
		if(!iPosx)
		{
			x = (screen.width-iBreite)/2;
		}
		else
		{
			x = iPosx;
		}
		
		if(!iPosy)
		{
			y=(screen.height-iHoehe)/2;
		}
		else
		{
			y = iPosy;
		}
		
		oWin.moveTo(x,y);
		
		oWin.focus();
	}
}

Event.observe(window, 'load', doStart);
/*]]>*/
