function OpenPopUpFriendMail(url)
{
	NewWin = window.open(url ,'', 'width=490,height=430,resizable');
	NewWin.focus();
}

// added 20080111
function OpenPopUpSendEmail(url)
{
	NewWin = window.open(url ,'', 'width=470,height=590,resizable,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1');
	NewWin.focus();
}