function showPopup(url, width, height) {
	var centerLeft = (screen.width - width) / 2;
	var centerTop =  (screen.height - height) / 2;
	//Utilizamos una expresión regular en el 2º parámetro del método window.open para eliminar los caracteres no alfanuméricos.
	popup = window.open(url, url.split('.')[0].replace(/[^\w@-]/, ''), 'width=' + width + ',height=' + height + ',resizable=0,left=' + centerLeft + ',top=' + centerTop);
	//popup.moveTo(centerLeft, centerTop);
	return popup;
}
function contactUs() {
	showPopup('internetmarketing/contactus.aspx', 422, 458);
}


