function checkAll(cb_all,cb_array)
{
	
	var cbox = document.getElementsByName(cb_array);
	 
	for (i=0; i<cbox.length; i++)
	{
		cbox[i].checked= cb_all.checked;
	}
}
function resetValue(tBox,value)
{
	if(tBox.value==value)
		tBox.value="";
}
function showHelpItem(h_t,open)
{
	help_title_item	= "h_t_";
	help_detail_item	= "h_d_";
	for(h_num=1;h_num<8;h_num++)
	{
		document.getElementById(help_detail_item+h_num).style.display = "none";
		document.getElementById(help_title_item+h_num).className = "normal";
	}

	document.getElementById(open).style.display = "";	
	document.getElementById(h_t).className = "active";	
	
}
window.fCopyToClipboard = function(rSource){
	rSource.select()
	if(window.clipboardData){
		var r=clipboardData.setData('Text',rSource.value);
		return 1;
	 }
	 else return 0 
}
