function emailWindow1(emailApp, pagetitle, sendthisurl) {
	//Function to popup the email to friend web page
	//emailApp = this refer to the url of the popup web page (e.g. EmailToFriend.aspx)
	//pagetitle = title of document used in the popup web page (EmailToFriend.aspx)
	//sendthisurl = url of page sending to friend (this is the page that the user wants his friend to view)
	var urlString = "";
	
	urlString += emailApp +  '?url=' + encodeURI(sendthisurl) + '&title=' + encodeURI(pagetitle);
	//alert(urlString);
	window.open(urlString,'sendWin','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=450,height=450');
}
