/*
		***********************************************************************************
		
		URL:			http://www.studiosdigital.at
		Copyright:		studiosdigital © vienna 2004
		Author:			gerwalt leitner, maximilian uhl
		Contact:		please use the email form provided on the page
		
		Description:	javascript for opening popup window
						
		***********************************************************************************	
*/
/*
		***************************************************************
		PopUp Function
		***************************************************************
*/

function popUp(popUpURL,popUpName,popUpWidth,popUpHeight,popUpScrollbars,popUpStatus,popUpResize) {
	
	var popUpTop = (screen.height - popUpHeight)/2;
	var popUpLeft = (screen.width - popUpWidth)/2;
	
	var features = 'width='+popUpWidth+',height='+popUpHeight+',top='+popUpTop+',left='+popUpLeft+',scrollbars='+popUpScrollbars+',status='+popUpStatus+',resizable='+popUpResize;
	window.open(popUpURL,popUpName,features);
	
}
