function TriversalUtil(){

}

// Checks if valid e-mail address
TriversalUtil.isEmail = function ( string ) { return /^[a-zA-Z0-9_\.\-]+\@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9]{2,4})+$/.test(string); };

TriversalUtil.confirmAction = function ( text, url ){
	var b = confirm( text );
	if (b) document.location = url;
}

TriversalUtil.popup = function ( url, w, h ){
	w = ( w == null ) ? 600 : w;
	h = ( h == null ) ? 500 : h;	
	window.open(url,"_blank","menubar=1,resizable=1,scrollbars=yes,width="+w+",height="+h+"");
}

TriversalUtil.formatAsMoney = function(mnt) {
    mnt -= 0;
    mnt = (Math.round(mnt*100))/100;
    return (mnt == Math.floor(mnt)) ? mnt + '.00' 
              : ( (mnt*10 == Math.floor(mnt*10)) ? 
                       mnt + '0' : mnt);
}
