/*
*	file:			global.js
*	content:		global functions
*	project:		Josito
*	version:		1.0
*	last update:	30.09.2006
*	developer:		dli
*	all rights at:	daniel.liebig@wevin.de 
*
*/

function showElement(elementId)
{
		document.getElementById(elementId).style.display	= 'block';
}
function hideElement(elementId)
{
		document.getElementById(elementId).style.display	= 'none';
}

function openDirections(lang)
{
	var	width = 530;
	var	heigth = 300;
	Win = window.open('/popup/direction_' + lang + '.htm', 'popupFassade', 'resizable=no,width=' + width + ',height=' + heigth);
	Win.focus();
}

function openNews(lang, id)
{
	var	width = 620;
	var	heigth = 450;
	Win = window.open('/popup/news.php5?lang=' + lang + '&id=' + id , 'popupNews', 'resizable=no, scrollbars=yes, width=' + width + ',height=' + heigth);
	Win.focus();
}

function openDisclaimer(lang)
{
	var	width = 395;
	var	heigth = 450;
	Win = window.open('/popup/disclaimer.php5?lang=' + lang, 'popupNews', 'resizable=no, width=' + width + ',height=' + heigth);
	Win.focus();
}
