
function emailFriend(sName){
	var h, w, friendWin
	h = window.screen.availHeight 
	w = window.screen.availwidth
	// rff change 
	

	 if (h >= 500)  {
		h = 500 ;
	 } 

	 if (w >= 800)  {
		w = 800 ;
	 }

	// end rff changes

	// sFeatures = "height=400, width=750, left=10, top=10, height=" + h*.75 + ",width=" + w*.80 + ",resizable"
	sFeatures = "left=10, top=10, height=" + h*.90 + ",width=" + w*.90 + ",resizable,scrollbars"
	friendWin = window.open("/EmailFriend.asp?ProdID="+sName,"",sFeatures)
	
}




