/**
 * Open TOPIX:8 Configurator 
 */

var win_height_conf = 1170;
if( win_height_conf > screen.height) win_height_conf = screen.height;
var win_width_conf = 1150;
var remote_conf = null;

function openConfigurator() {
	remote_conf = window.open('/konfigurator/index.php','_configurator','resizable=no,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,hotkeys=no,dependent=yes,innerWidth='+win_width_conf+',innerHeight='+win_height_conf+',width='+win_width_conf+',height='+win_height_conf); 
}

