﻿// JScript File
function pad_date(obj)
{
	if(obj.value.length == 1 && obj.value.length < 2)
	{
		obj.value = "0" + obj.value;
	}
	
}
function TandC()
{
    mypage= "tandc.htm"; myname = "mywindow";
    w = "800"; h = "600"; s = "1"; pos = "center"; 
    NewWindow(mypage,myname,w,h,s,pos)
} 

function NewWindow(mypage,myname,w,h,s,pos)
{
    if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
    if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
    else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
    settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+s+',location=0,directories=0,status=0,menubar=0,toolbar=0,resizable=1';
    mywindow = window.open(mypage,myname,settings);
}

function CollapseMenu(el)
{
    el.style.display = 'none';
    //el.nextSibling.style.display=='none'?el.nextSibling.style.display='block':el.nextSibling.style.display='none' 
    //alert('Javascript to open menu needs to come in');
}
