<!-- function sendToFriend() {	var width = 480;	var height = 620;	var left = parseInt((screen.availWidth/2) - (width/2));	var top = parseInt((screen.availHeight/2) - (height/2));		var windowFeatures = "menubar=0, directories=0, toolbar=0, width=" + width + ",height=" + height + ",scrollbars=0,resizable=1,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;	var sendtofriend = window.open('sendtofriend.action', 'sendtofriend', windowFeatures);}//-->