var screenx = 0;
var screeny = 0;
  
function openTargetShopWindow(url){
  	if (self.innerHeight)  {
  	    screenx = self.innerWidth;
  	    screeny = self.innerHeight;
  	    screenx += 130;
  			screeny += 70;  
  	}
  	else if (document.documentElement && document.documentElement.clientHeight) {
  	    screenx = document.documentElement.clientWidth;
  	    screeny = document.documentElement.clientHeight;
  	}
  	else if (document.body) {
  	    screenx = document.body.clientWidth;
  	    screeny = document.body.clientHeight;
  	}
  	targetShopWindow = window.open(url, "TargetShopSearch", "width=" + screenx + ",height=" + screeny + ",left=10,top=10,scrollbars=no");
  	targetShopWindow.focus();
}

function openConfigurator(lang){
	configuratorWindow = window.open("configurator/index.php?lang=" + lang, "Configurator", "width=1010,height=620,left=5,top=5,scrollbars=yes,resizable=yes");
	configuratorWindow.focus();
}

function openLG400Configurator(lang){
	configuratorWindow = window.open("configurator/index.php?lang=" + lang + "&sub=LG400", "Configurator", "width=1010,height=620,left=5,top=5,scrollbars=yes,resizable=yes");
	configuratorWindow.focus();
}

function openLP400Configurator(lang){
	configuratorWindow = window.open("configurator/index.php?lang=" + lang + "&sub=LP400", "Configurator", "width=1010,height=620,left=5,top=5,scrollbars=yes,resizable=yes");
	configuratorWindow.focus();
}


