	
	var SendtoFriendWindow=0;
	
	function SendtoFriend(s_title,s_url,s_thum,s_topic)	{
			  if(SendtoFriendWindow)	  {
					if(!SendtoFriendWindow.closed) SendtoFriendWindow.close();
			  }
	 width = 375;
	height = 335;
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	window.paramSendfriend1 = s_title;
	window.paramSendfriend2 = s_url;
	window.paramSendfriend3 = s_thum;
	window.paramSendfriend4 = s_topic;
	  				SendtoFriendWindow = open('form_send.php', 'SendtoFriendWindow', 'toolbar=no,location=no,directories=no,status=yes,menub ar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+LeftPosition+', top='+TopPosition+',screenX='+LeftPosition+',screenY='+TopPosition+'');
	
	}