x="";
x=x+x;
y="  ";
i=0;
function scroll(){
    window.defaultStatus=x.substring(i,x.length)+x;
    i++;
    if (i==x.length) i=0;
    tid=setTimeout("scroll()",100)
}
function stopScroll(){
    window.defaultStatus=" ";
    window.clearTimeout(tid);
} 
function fullScreen(theURL) {
	window.open(theURL,'small','fullscreen=no,scrollbars=no,width=180,height=180');
}
function scrollScreen(theURL) {
	window.open(theURL,'small','fullscreen=no,scrollbars=yes,width=360,height=420');
}
function submit(){
	document.forms[0].submit();
}
function getlist(frm,vname){
	var len = frm.elements.length; lst = "";
	for(var i=0;i<len;i++){
		if (frm.elements[i].name==vname && frm.elements[i].checked)
		lst += frm.elements[i].value + ",";
	}
	return (lst.length>0)?lst.substr(0,lst.length-1):"";
}
