function checkall() {
	for(n=0 ;n<document.form.length;n++)
	{ document.form[n].checked = true; }
}

function notcheckall() {
	for(n=0 ;n<document.form.length;n++)
	{ document.form[n].checked = false; }
}

function gotourl(path,targetForm) {
	frm = document.forms[targetForm];
	frm.action = path;
	frm.submit();
}

function popup(path,wTop,wLeft,wWidth,wHeight) {
	win = window.open(path,"","width="+wWidth+",height="+wHeight+",top="+wTop+",left="+wLeft);
	win.focus();
}

function popupwithstyle(path,wstyle) {
	win = window.open(path,"",wstyle);
	win.focus();
}