/**
 *
 * Copyright World.Net Services Ltd, all rights reserved, 2004 - 2009.
 */

/**
 * Broswer class.
 *
 */
function Browser(){
  this.dom = document.getElementById?1:0;
  this.ie4 = (document.all && !this.dom)?1:0;
  this.ns4 = (document.layers && !this.dom)?1:0;
  this.ns6 = (this.dom && !document.all)?1:0;
  this.ie5 = (this.dom && document.all)?1:0;
  this.ok = this.dom || this.ie4 || this.ns4;
  this.platform = navigator.platform;
}
var browser = new Browser();



/**
 * Rate Calculator Class
 * 
 */

function Form()
{
//	alert('form');
}


/**
 *
 */
Form.prototype.submit = function()
{
//	alert('form submit');
	return true;
}
