function dashboardSelector(id){

	var field_container = document.getElementById(id);
	var sitecode = document.getElementById('dashboard_select').value;

	if(sitecode !=''){
		
		var dashboards = agent.call('../ajax/Dashboard.ajax.php','SelectDashboards',id,sitecode);
		
	}
	else{
		field_container.InnerHTML='no site code was entered';
	}	
}

function dashboardCheck(){
			var select =document.getElementById('dashboard_select');
			var target = select[select.selectedIndex].value;
			
			return window.open(target, 'open_window', 'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=1000, height=900, left=0, top=0');
}