function SetAllCheckBoxes() {
	//document.getElementById('c1').checked = true;
	var elem = document.getElementById('myForm').elements;
	for(var i = 0; i < elem.length; i++)
	{
		if (elem[i].type == 'checkbox') {
			if (elem[i].name != 'c_0') {
			if (elem[i].checked == false) elem[i].checked = true; else elem[i].checked = false;
			}
		}
	}
}

function win(link){
	var win_width = 450;
	var win_height = 440;
	var w=(screen.width)/2 - (win_width/2);
	var h=(screen.height)/2 - (win_height/2); 
	window.open(link, '_blank', 'top='+h+',left='+w+',width='+win_width+',height='+win_height+',status=yes,toolbar=no,location=no,resizable=no,scrollbars=yes');
} 
function win2(link){
	var win_width = 780;
	var win_height = 600;
	var w=(screen.width)/2 - (win_width/2);
	var h=(screen.height)/2 - (win_height/2); 
	window.open(link, '_blank', 'top='+h+',left='+w+',width='+win_width+',height='+win_height+',status=yes,toolbar=no,location=no,resizable=no,scrollbars=yes');
} 
function link(value,site_addr,param){
	if (value != 0) window.location.href = "http://" + value + "." + site_addr + param;
}
function link2(value,site_addr,cy,param){
	if (value != 0) window.location.href = "http://" + cy + "." + site_addr + value + "/" + param;
}