jsCritical = 16 ;
jsQuestion = 32 ;
jsExclamation = 48 ;
jsInformation = 64 ;

function infoAlert(str){
	jsMsgBox(str,"ΜαΚΎ",jsInformation);
}

function getDateStr(){
	var cDate = new Date();
	var DateStr = ""+cDate.getYear()+""+cDate.getMonth()+""+cDate.getDay()+cDate.getHours()+cDate.getMinutes()+cDate.getSeconds();
	return DateStr ;
}

