// Utility Functions

function DoContactus()
{
var winxpos=Math.round((screen.width-300)/2);
var winypos=Math.round((screen.height-250)/2);
contactswindow=window.open('contactus.html','Contacts','width=300 height=250 menubar=0 toolbar=0');
contactswindow.moveTo(winxpos,winypos);
}

function DoCorres(correswindow)
{
var winxpos=Math.round((screen.width-500)/2);
var winypos=Math.round((screen.height-400)/2);
correswindow=window.open('correswindow','Correspondence','width=500 height=400 menubar=0 toolbar=0');
contactswindow.moveTo(winxpos,winypos);
}

function DoCommittee()
{
var winxpos=Math.round((screen.width-400)/2);
var winypos=Math.round((screen.height-450)/2);
committeewindow=window.open('committee.html','Committee','width=400 height=450 menubar=0 toolbar=0');
committeewindow.moveTo(winxpos,winypos);
}

