function emailArticle(id) {

	// Center the new window in the screen
	var w = 440;
	var h = 220;	
	var l = 40; //screen.availWidth/2 - w/2;
	var t = 40; //screen.availHeight/2 - h/2;
	
	imageSelector = window.open("article_email.asp?id=" + id,null, 
	  "width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + 
	  ", titlebar=yes, scrollbars=no, status=no, offscreenBuffering=true");

}

