function doorderform (cardcode)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=500,height=350";
  CIAorderwin = window.open("makeorderform.php?InvitCode=" + cardcode, "Order", secondpart);
  CIAorderwin.focus();
}

function PopupWindow (photoname, inwidth, inheight, sitename)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=" + (inwidth+15) + ",height=" + (inheight+45);
  popupwin = window.open("", "Photo", secondpart);
  popupwin.document.open("text/html","replace");
  popupwin.document.writeln ('<html><head><title>' + sitename + ' -- Click Window to Close</title></head>');
  popupwin.document.writeln ('<body bgcolor="white">');
  popupwin.document.writeln ('<a href="javascript:window.close()"><img src="pix/' + photoname + '" border="0">');
  popupwin.document.writeln ('<center>Click to Close</center></a></body></html>');
  popupwin.document.close();
  popupwin.focus();
}


function PopupWindowScroll (photoname, inwidth, inheight, sitename)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=1,width=" + (inwidth+15) + ",height=" + (inheight+35);
  popupwin = window.open("", "Photo", secondpart);
  popupwin.document.open("text/html","replace");
  popupwin.document.writeln ('<html><head><title>' + sitename + ' -- Click Window to Close</title></head>');
  popupwin.document.writeln ('<body bgcolor="white">');
  popupwin.document.writeln ('<a href="javascript:window.close()"><img src="pix/' + photoname + '" border="0">');
  popupwin.document.writeln ('<center>Click to Close</center></a></body></html>');
  popupwin.document.close();
  popupwin.focus();
}
