function printerfriendly() 
{

    var currentURL = window.location;
    var smartprint = "http://www.visaplatinum.com";
    var features   = "height=480,width=600,status=yes,scrollbars=yes,resizable=no;toolbar=no,menubar=no,location=no";
    window.open("", "printwin", features);
    //document.printform.action     = smartprint + "/ap/Print";
	document.printform.action     = "/ap/Print";
    document.printform.pull.value = currentURL;
    document.printform.title.value= document.title;
    document.printform.target     = "printwin";
    document.printform.submit();
}


function searchsubmit() 
{
  document.form1.action     = "/ap/Search/SiteSearch";
  document.form1.method     = "get";
  document.form1.submit();
}


function logout(){
  document.logout.submit();
}