// Popup general
	function makePopup(url,popname,width,height) {
		window.open(url, popname, "width="+width+",height="+height+",resizable=yes,scrollbars=yes");
	}
// Popup Show Room
	function launchShowRoom () {
		var W = screen.availWidth;
		var H = screen.availHeight;
		var L = (window.screen.width-W)/2;
		var T = (window.screen.height-H)/2;
		window.open('showroom.html','ShowRoom','width='+W+', height='+H+', left='+L+', top='+T+', resizable=no, scrollbars=no, menubar=no');
	}
// Popup Catalogo
	function launchCatalogo () {
		var W = screen.availWidth;
		var H = screen.availHeight;
		var L = 0;
		var T = 0
		window.open('/catalogo/','Catalogo','width='+W+', height='+H+', left='+L+', top='+T+', resizable=yes, scrollbars=yes, menubar=yes,status=yes');
	}
// Popup (expert)
	function launchExpert () {
		window.open('http://www.xpcreations.com','expert');
		window.focus();
	}
// Email Executive
	function mailExecutive (to) {
		window.location.href = "mailto:"+to+"?subject=Contacto con ejecutivo";
	}
// Popup Screen Resolutions
	function screenSetUp () {
		var lPos = (screen.width-700)/2;
		var tPos = (screen.height-500)/2;
		scrSetUp = window.open( "/screen.html", "ScreenSize", "width=700,height=500,left="+lPos+",top="+tPos+",resizable=yes,scrollbar=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no" );
		scrSetUp.focus();
		window.location.reload();
	}

