function showcategory(thiscategory) {
  this.document.forumform.msgcategory.value = thiscategory;
  this.document.forumform.action = "forum.php";
  this.document.forumform.submit();
}
function newmessage() {
  this.document.forumform.action = "message.php";
  this.document.forumform.submit();
}
function showdetail(msgid) {
  this.document.forumform.action = "detail.php?MSGID="+msgid;
  this.document.forumform.submit();
}
function dologin() {
  this.document.forms[0].action = "getinfo.php";
  this.document.forms[0].submit();
}
function bloginfo() {
    var newUrl = "location=no";
    newUrl += ",toolbar=no";
    newUrl += ",menubar=no";
    newUrl += ",status=no";
    newUrl += ",scrollbars=no";
    newUrl += ",resizable=no";
    newUrl += ",top=40";
    newUrl += ",left=50";
    newUrl += ",width=500";
    newUrl += ",height=500";

    var myprintpreview = window.open("blog_info.php", "Blogger", newUrl);
    myprintpreview.focus();
}
function termsinfo() {
    var newUrl = "location=no";
    newUrl += ",toolbar=no";
    newUrl += ",menubar=no";
    newUrl += ",status=no";
    newUrl += ",scrollbars=yes";
    newUrl += ",resizable=no";
    newUrl += ",top=40";
    newUrl += ",left=50";
    newUrl += ",width=450";
    newUrl += ",height=620";

    var myprintpreview = window.open("terms.php?F=P", "DREAMAXIS", newUrl);
    myprintpreview.focus();
}
function toyinfo() {
    var newUrl = "location=no";
    newUrl += ",toolbar=no";
    newUrl += ",menubar=no";
    newUrl += ",status=no";
    newUrl += ",scrollbars=no";
    newUrl += ",resizable=no";
    newUrl += ",top=40";
    newUrl += ",left=50";
    newUrl += ",width=450";
    newUrl += ",height=620";

    var myprintpreview = window.open("toy_info.php", "TOY", newUrl);
    myprintpreview.focus();
}
function talentwebsite(talenturl) {
    var newUrl = "location=no";
    newUrl += ",toolbar=no";
    newUrl += ",menubar=no";
    newUrl += ",status=no";
    newUrl += ",scrollbars=yes";
    newUrl += ",resizable=yes";
    newUrl += ",top=40";
    newUrl += ",left=50";
    newUrl += ",width=900";
    newUrl += ",height=650";

    var myprintpreview = window.open("talentwebsite.php?TURL="+talenturl, "TalentOfTheWeek", newUrl);
    myprintpreview.focus();
}

