function select(sid, id) {

	url = "javascript:document.write(' ')";
	PopUp=window.open(url, "select", "width=250,height=150,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no"); 


	sel = 0;
	if (document.getElementById(id).checked == true) { sel = 1; }

	url = '/cgi-bin/select.cgi?sid='+sid+'&id='+id+'&sel='+sel+'&r='+Math.round(Math.random(10090) * 10000);
//	PopUp=window.open(url, "_new", "width=420,height=535,screenY=20,screenX=210,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no"); 
	PopUp=window.open(url, "select", "width=250,height=150,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no"); 

//	PopUp.blur();
	PopUp.focus();
}

function checkbox_change ( id ) {

	if (document.getElementById(id).checked == true) {
		document.getElementById(id).checked = false;
	} else {
		document.getElementById(id).checked = true;
	}
}


function Float(url) {
	PopUp=window.open(url, "_blank", "width=700,height=600,screenY=20,screenX=210,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no"); 
}

function Float_wh(url, w, h) {
	w += 30;
	h += 70;
	PopUp=window.open(url, "_blank", "width="+w+",height="+h+",screenY=20,screenX=210,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no"); 
}
