function getURL(thisLocation) {	window.location.href = thisLocation;}function changeCell(target, color) {	target.style.backgroundColor = color;	target.style.cursor = "hand";}function openWin(src, width, height) {	var w = 800, h = 600;	if (document.all || document.layers) {		w = screen.availWidth;		h = screen.availHeight;	}	var leftPos = (w-width)/2, topPos = (h-height)/2;	window.open(''+src+'','','width='+width+',height='+height+',toolbar=no,status=yes,menubar=no,scrollbars=no,resizeable=no,top=' + topPos + ',left=' + leftPos);	void(0);}function PopWindow(url, nameW, wide, high) {	if (navigator.appVersion.indexOf('4') != -1) {	// Vars for centering the new window on Version 4 Browsers	w = wide;	h = high;	x4 = screen.width/2 - (w/2);	y4 = screen.height/2 - (h/2);	window.open(url, nameW, 'height=' + h + ',width=' + w + ',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');	}}