function flop(id) {
 if (document.getElementById(id).style.display = "block")
 document.getElementById(id).style.display = "block"
 else
 if (document.getElementById(id).style.display != "block")
   document.getElementById(id).style.display = "block"
 else 
   document.getElementById(id).style.display = "none"
}
//
function PaymentLink_KEEP() {
  var d=new Date();
    if (d.getDate() > 5 && d.getDate() < 25 ) {
	//alert('greator than 5 and less than 25, no good');
	flop('error');
  }
    else {
	//alert('less than 10, okay');
	window.open('https://eps.mvpbanking.com/cgi-bin/login.pl?access=3270');}
}
//
//
//
//
function PaymentLink() {
  var d=new Date();  
    if (d.getDate() > 9) {
	//alert("greator than 20 GOOD");
	window.open('https://eps.mvpbanking.com/cgi-bin/login.pl?access=3270');
  }
    else {
	//alert("less than 20 BAD");
	flop('error');
	}
}
function PaymentLink10SAVE() {
	window.open('https://eps.mvpbanking.com/cgi-bin/login.pl?access=3270');
}
