function popUpWin(url, width, height) {
	if(width == null) {
		width = (screen.width * .9 > 1000) ? 1000 : screen.width * .9
	}
	
	if(height == null) {
		height = screen.height * .8
	}
	
	window.open(url,'', 'width=' + width + ',height=' + height + ',toolbar=no,resizable=yes,top=20,left=20,scrollbars=yes')	
}

function writeEmail(displayName, userName) {
	document.write("<a href='#' onclick='sendEmail(\"" + userName + "\");return false;' title='Click here to email " + displayName + "'>" + displayName + "</a>")
}

function sendEmail(userName) {
	window.navigate("mailto:" + userName + "@eagleonelogistics.com")
}
