function popup(murl) {
	window.open(murl, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=450,height=400');
}

function launchpopup(murl,mname) {
	window.open(murl, mname, 'width=400, height=400');
}

function launchtip(murl,mname) {
	window.open(murl, mname, 'width=600, height=550,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no');
}


function launchchatpopup(murl,mname) {
	window.open(murl, mname, 'width=450, height=450');
}

function launchbook(murl) {
	window.open(murl, 'mail', 'width=860, height=600');
}

function launchpoll() {
	window.open('poll.asp', 'poll', 'WIDTH=300,HEIGHT=320');
}



function checkAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = true ;
}

function uncheckAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = false ;
}
