/* js for package: std-layout */


	var whattolaunch;
	var breite=660; 
	var hoehe=500; 
	var top=screen.availHeight/2-(hoehe/2); 
	var left=screen.availWidth/2-(breite/2); 
	var eigenschaften='top='+top+',left='+left+',width='+breite+',height='+hoehe+',scrollbars=yes';

function openWindow(whattolaunch){

	
	if (whattolaunch = 'undefined'){
		whattolaunch = 'http://www.vipgast.at/betrieb/gross/';
	}
	
	
	
	window.open(whattolaunch,"SHOP",eigenschaften,resizable="no");
	/*window.open(whattolaunch,"SHOP","width=300,height=200,scrollbars=yes");*/
}


