/**
 * 用于所有的模板index.jsp的预定义的JavaScript脚本
 */
function FriendLinkChanged(theForm)
{
  if(theForm.options[theForm.selectedIndex].value != "#")
     window.open(theForm.options[theForm.selectedIndex].value);
}

function PopupWindow(theURL,Content,nWidth,nHeight,nLeft,nTop,scrollbars)
{
  var WndStyle;
  
  if(scrollbars)
    WndStyle = "menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes"; 
  else
    WndStyle = "menubar=no,status=no,toolbar=no,scrollbars=no,resizable=yes";
  
  WndStyle += ",width="+nWidth;
  WndStyle += ",height="+nHeight;
  WndStyle += ",left="+nLeft;
  WndStyle += ",top="+nTop;
  
  if(theURL != "_content")
    window.open(theURL,"_blank",WndStyle);
  else {
    win = window.open("","_blank",WndStyle);
    win.document.write(Content);
  }
}

function MemberLogout()
{
  if(!confirm('确认退出么?'))
    return;
  form_logout.aurl.value = document.location.href;
  form_logout.submit();
}