//
// +-------------------------------------------------------------+
// | HiveMail version 1.2 (English)
// | Copyright ©2002-2003 Chen Avinadav <chen@hivemail.com>
// +-------------------------------------------------------------+
// | HIVEMAIL IS NOT FREE SOFTWARE
// | If you have downloaded this software from a website other
// | than www.hivemail.com or if you have otherwise received
// | this software from someone who is not a representative of
// | this organization you are involved in an illegal activity.
// | License agreement: http://www.hivemail.com/license.html
// +-------------------------------------------------------------+
// | $RCSfile: common.js,v $ - $Revision: 1.8 $
// | $Date: 2003/02/23 19:11:42 $ - $Author: chen $
// | $Downloaded: Fri, 02 May 11:12 $
// +-------------------------------------------------------------+

function getElement(name) {
	if (document.getElementById) {
		return document.getElementById(name);
	} else if (document.all) {
		return document.all[name];
	} else if (document.layers){
		return document[name];
	}
}

function preloadImages() {
	var toLoad = preloadImages.arguments;
	document.preload = new Array();
	if (document.images) {
		for (var i = 0; i < toLoad.length; i++) {
			document.preload[i] = new Image();
			document.preload[i].src = toLoad[i];
		}
	}
}