/**
 *
 *
 * @version $Id: common.js,v 1.2 2007/03/09 14:22:52 emen Exp $
 * @copyright 2004
 **/

// common usefull vars
//var isIEx = (navigator.userAgent.indexOf('Opera') != -1) ? 1 : 0;
var isOpr = (navigator.userAgent.indexOf('Opera') != -1) ? 1 : 0;
var isFox = (navigator.userAgent.indexOf('Firefox') != -1) ? 1 : 0;
var isMnk = (navigator.userAgent.indexOf('SeaMonkey') != -1) ? 1 : 0;
var isNet = (navigator.userAgent.indexOf('Netscape') != -1) ? 1 : 0;


// common usefull functions
function reload()
{
	window.location = window.location;
}
