 function PickUpCARD() {
  window.status=('Searching....')
  
var CARDis;
 CARDis = document.CARDpup.ID.value
 var location=("getcard.php?cardid=" + CARDis);
         this.location.href = location;
        }


/****** This is code snippet to place wherever you want on your site *****/	
/*
<FORM name=CARDpup>PICKUP A CARD<br>Enter the card ID Number : 
<INPUT name=ID  style="font-family: Arial, Helvetica, sans-serif; font-size: 7pt; font-weight: bold; background-color: #5a5a5a; color: #ffffff; width: 75px; border: 0pt;">
<INPUT onclick=PickUpCARD(this) type=button value="PickUp Card" style=" cursor: pointer; width: 75px; background-color: #5a5a5a;  border: 0px;
font-family: Arial, Helvetica, san-serif; font-size: 10px; text-decoration: none; font-variant: small-caps; font-weight: bold; color: #ffffff; height: 13px;">
</form>
*/
