function di(id,name) {
	if (document.images) {document.images[id].src=eval(name+".src"); }
}

// function that displays status bar message
function dm(msgStr) {
	document.returnValue = false;
	if (document.images) { 
		window.status = msgStr;
		document.returnValue = true;
	}
}

var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";

function dmim(msgStr) {
	document.returnValue = false;
	if (showMsg) { 
		window.status = msgStr;
		document.returnValue = true;
	}
}

function Start(page) {
	OpenWin = this.open(page, "tearsheet", "width=700,height=630,toolbar=1,menubar=0,location=0,resizable=1,scrollbars=1");
}
