/*------------------------------------------------------------------------------
send 2 friend pop-up
------------------------------------------------------------------------------*/

function sendPageToFriend(URL){
    var browser = navigator.appName;
    var width = 400;
   	var height = 450;
    swidth = ((screen.width/2)-(width/2));
    sheight = ((screen.height/2)-(height/2));
	newWin = window.open('/send_to_friend.php?url='+escape(URL),'refer_friend','width='+ width +',height='+ height +',screenY='+ sheight +',screenX='+ swidth +',top=' + sheight + ',left=' + swidth + ',resizeable=no,scrollbars=no');
    newWin.focus();
	}