



























































































































function online_services() {
var link;
link = lock();
if ( link == "OK" )
{
window.open("https://www.mpiphp.org/online_services/login.htm","",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
}
else
{
window.open(link ,"",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
} 
 
 }
 






function sign_up() {
var link = lock();
if ( link == "OK" )
{
 window.open("https://www.mpiphp.org/online_services/signupchoice.htm","",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
}
else
{
window.open(link ,"",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
} 
  
}

function calendar() {
var link;
link = lock();
if ( link == "OK" )
{
 window.open("https://www.mpiphp.org/about_us/Calendar/diary.asp","",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
}
else
{
window.open(link ,"",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
} 
}

function AdCalendar() {
var link;
link = lock();
if ( link == "OK" )
{
 window.open("https://www.mpiphp.org/about_us/Calendar/Admin/Calendar/diary.asp","",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
}
else
{
window.open(link ,"",
 "toolbar=0,scrollbars=yes,left=1,top=1,width="+(screen.width-20)+",height="+(screen.height-70)+",resizable=yes");
}  
}

function lock()
{
 var d = new Date();
 var ret, link;
 ret = d.getYear() + '-' + (d.getMonth()+1) + '-' + d.getDate() + ' ' + d.getHours() + ':' + d.getMinutes() 
 link = "https://www.mpiphp.org/online_services/update.asp?us=" + ret;
 ret = link;
ret = "OK"
 return(ret);
}




















