var postcard_strQS = "";
postcard_SetPostCard('/games/home/images/postcardbackground.gif');
postcard_SetLink(document.URL.substr(document.URL.indexOf('/games/')+7));  //set postcard link to current page

function postcard_SetPostCardOptions(s)
{
  postcard_strQS = s;
}

function postcard_Clear()
{
  postcard_strQS = "";
}

function postcard_SetScreenShots(i1,u1,i2,u2,i3,u3)
{
  postcard_strQS += "action=" + escape("option") +
                  "&optss1=" + escape(i1) +
                  "&optss2=" + escape(i2) +
                  "&optss3=" + escape(i3) +
                  "&optURL1=" + escape(u1) +
                  "&optURL2=" + escape(u2) +
                  "&optURL3=" + escape(u3) + "&";
}

function postcard_SetPostCard(p)
{
  postcard_strQS += "postcard=" + escape(p) + "&";
}

function postcard_SetLink(l)
{
  postcard_strQS += "link=" + escape(l) + "&";
}

function postcard_SetTextColor(c)
{
  postcard_strQS += "textColor=" + escape(c) + "&";
}

function postcard_openDialog()
{
  window.open("/games/postcard/send.asp?" + postcard_strQS,
              "winPostcard",
              "toolbar=no,titlebar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,fullscreen=no,scrollbars=no,top=150,left=190,width=534,height=318");
}
