window.onError = error_report;

// function
function error_report() {
    window.status = "JavaScript error! Please contact webmaster to correct...";
    return true;
}

function noSpam(user,domain) {
	locationString = "mailto:" + user + "@" + domain;
	window.location = locationString;
}

function openWin(width, height, url, attribute, windowName)
{
	var position_y = (screen.width - width)/2;
	var position_x = (screen.height - height)/2;
	property = "width=" + width + ", height=" + height + ", top=" + position_x + ", left=" + position_y + "," + attribute;
	window.open(url, "", property);
}

function openPopup(width, height, file) {
	properties= "resizable = no, scrollbars = no, statusbar = no";
	openWin(width, height, file + ".html", properties, "healthempire_popup");
}
