function out_validate(){
	if(confirm('You are about to check out the office this day!\n Are you sure you want to check out for the day?'))
	{
		return true;
	}else{
		return false;
	}
}
function report_validate(){
	if(confirm('Are you sure you want to submit the report?\n\nIf any field with (*) sign is field incorrectly or empty, you will need to redo you report again\n\nIf you need to check again click on Cancel Button below.'))
	{
		return true;
	}else{
		return false;
	}
}

function popup(page){
	window.open(page,'ALSA POPUP MESSAGE','width=200, height=100');
}
