/**
	 * Manages all models.
	 */
	public function actionAdmin()
	{
		
		$model=new EmployeeNotification('search');
		$model->unsetAttributes();  // clear any default values
		if(isset($_GET['EmployeeNotification']))
			$model->attributes=$_GET['EmployeeNotification'];

		$this->render('admin',array(
			'model'=>$model,
		));
	}