﻿var width = 600;
var height = 442;
var x = (window.screen.width - width) / 2;
var y = (window.screen.height - height) / 2;

function DimensioningRequest(lang, username, pwd)
{
	window.open("http://configurator.cofil.it/Default.aspx?service=DimensioningRequest&lang=" + lang + "&user=" + username + "&password=" + pwd, "dimensioningRequest", "status=yes, scrollbars=yes, resizable=yes, width=" + width + ", height=" + height + ", left=" + x + "screenx=" + x  + ", top=" + y + ", screeny=" + y);
}

function ConfiguratorDemo()
{
	window.open("/mycf.services.demo/3DConfigurator/Configurator.aspx", "configuratorDemo", "status=yes, width=602, height=443, left=" + x + "screenx=" + x  + ", top=" + y + ", screeny=" + y);
}

