function spaFriend(URL){	
    var browser = navigator.appName;
    var width = 400;
   	var height = 400;
    swidth = ((screen.width/2)-(width/2));
    sheight = ((screen.height/2)-(height/2));
	newWin = window.open('/spa_friend?url='+URL,'spa_friend','width='+ width +',height='+ height +',screenY='+ sheight +',screenX='+ swidth +',top=' + sheight + ',left=' + swidth + ',resizeable=no,scrollbars=no');
    newWin.focus();
	}