function runScript(frameID, name) {
	var theForm = document.all? (top.document.frames(frameID)[name]() || null)
	 	: document.getElementById? (top.document.getElementById(frameID).contentWindow[name]() || null)
	 	: null ;
}

function getObject(frameID, id){
	var obj = document.all? (top.document.frames(frameID).document.all[id] || null)
	 	: document.getElementById? (top.document.getElementById(frameID).contentDocument.getElementById(id) || null)
	 	: null ;
	return obj;
}