function popWindow(href,w,h,wcont){
	if(w == undefined) w = 800; //Default Settings
	if(h == undefined) h = 630;
	var rest = (!wcont)? "toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,fullscreen=no":"toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,directories=yes,location=yes,fullscreen=no";
	window.open(href,"_blank","width="+ w + ",height=" + h + ",top=25,left=25," + rest);
	return false;
}

function emailMe(user,domain) {
emailaddress = "mailto:" + user + "@" + domain;
window.location = emailaddress;
}