// $Id: konfig_popup.js 4569 2009-08-14 13:48:41Z sebastian $

function openKonfigurator(base, action, title)
{
	var url = base + 'konfigurator/' + action + '/';
	var w = 985;
	var h = 710;
	var x = screen.availWidth/2-w/2;
	var y = screen.availHeight/2-h/2;
	window.open(url, title, 'width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',status=0,toolbar=0,location=0,menubar=0,directorys=0,resizeable=1,scrollbars=1');
}
