function openSendWindow(url, title){
	
	var w = 500, h = 500;
	
	w = screen.availWidth;
	h = screen.availHeight;
	
	var popH = 315, popW = 385;
	
	var leftPos = (w-popW)/2, topPos = ((h-popH)/2);
	
	var load = window.open('includes/sendtofriend.php?url=' + encodeURIComponent(url) + '&title=' + encodeURIComponent(title),'','scrollbars=auto,menubar=no,height=' + popH + ',width=' + popW + ',top=' + topPos + ',left=' + leftPos + ',resize=no,toolbar=no,location=no,status=no');
}