
function emailFriend(sName){
	var h, w, friendWin
	h = window.screen.availHeight 
	w = window.screen.availWidth 
	sFeatures = "height=" + h*.50 + ",width=" + w*.49 + ",resizable"
	friendWin = window.open("EmailFriend.asp?ProdID="+sName,"",sFeatures)
	
}



