// Popup


function launchCenteredPopup (file, w, h) {
	if (!w) w = 500;
	if (!h) h = 300;
	var x = (screen.width-w)/2;
	var y = (screen.height-h)/2;	
	
	var attribs = "width=" + w + ",height=" + h + ",left=" + x + ",top=" + y + ",toolbar=no,statusbar=no,scrollbars=no,resizable=no,status=no,menubar=no,location=no,titlebar=no";	
	window.open (file, "_blank", attribs); 
}


function launchContactUs(){
	launchCenteredPopup ("https://www.security.honeywell.com/ss/total_connect/", 710, 605);
}


