
function e(id)
{
	return document.getElementById(id)?document.getElementById(id):false;
}

/*
function onOver(btn_obj){
	btn_obj.src = btn_obj.src.split("-off").join("-on");
}


function onOut(btn_obj){
	btn_obj.src = btn_obj.src.split("-on").join("-off");
}
*/ 
// onMouseOver="onOver(this);" onMouseOut="onOut(this);" 
	/*
function validateEmail(str){

	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (filter.test(str)){
		return true;
	} else {
		return false;
	}
}


function openSampleReport(obj_anchor){
					
	return true;				
	

	var new_win = window.open(obj_anchor.href,'sample_report','width=950,height=600,resizable=yes,scrollbars=yes,left='+String((screen.width-950)/2)+',top='+ String((screen.height-600)/2) ); 
	if (new_win) { 
		new_win.focus(); 
		return false; 
	} else {
		return true; 							
	}
	
	
}*/