﻿// JavaScript Document
function getElement(eltId) {
	if (document.getElementById) {
		elt=document.getElementById(eltId);
	} else if (document.all) {
		elt=document.all[eltId];
	}
	return elt;
}

function openWin() {
	open('diffTable.html', 'compareWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=782,height=610,left=40,top=40');
}

function closeWin() {
	self.close;
}
