function Impressum()
{
newWindow=window.open('http://www.smartsite.de/impressum.html', 'impressum', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, top=120, left=100, width=300, height=370');
}


// Open a new window.
function reqWin(desktopURL, alternateWidth, alternateHeight, noScrollbars)
{
	if ((alternateWidth && self.screen.availWidth * 0.8 < alternateWidth) || (alternateHeight && self.screen.availHeight * 0.8 < alternateHeight))
	{
		noScrollbars = false;
		alternateWidth = Math.min(alternateWidth, self.screen.availWidth * 0.8);
		alternateHeight = Math.min(alternateHeight, self.screen.availHeight * 0.8);
	}
	else
		noScrollbars = typeof(noScrollbars) != "undefined" && noScrollbars == true;

	window.open(desktopURL, 'requested_popup', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=' + (noScrollbars ? 'no' : 'yes') + ',width=' + (alternateWidth ? alternateWidth : 900) + ',height=' + (alternateHeight ? alternateHeight : 600) + ',resizable=no');

	// Return false so the click won't follow the link ;).
	return false;
}