var MinHeight;
var MinImgSpacer;
MinHeight = getInsideWindowHeight();
MinHeight = MinHeight - 268;
MinImgSpacer = '<img src="http://www.aatseel.org/100111/images/clear.gif" width="1" height="' + MinHeight + '" alt="">';

function mouseOver(e) {
	if (typeof(e) != 'object') e = document.getElementById(e);
    if (e) {
		e.oldClassName=e.className;
		e.className+='-over';
	}
}

function mouseOut(e) {
	if (typeof(e) != 'object') e = document.getElementById(e);	
    if (e && e.oldClassName) e.className=e.oldClassName;
}

function mouseClick(e) {
	if (typeof(e) != 'object') e = document.getElementById(e);	
	var i;	
	if (e && e.hasChildNodes) {
		for (i=0; i<e.childNodes.length; i++) {
			if (e.childNodes[i].tagName == 'A') {
				document.location = e.childNodes[i].getAttribute('href');
				return;
			}
		}
	}
}


