<!--
var windowCount = 1;
function gonext(thePage) {
	i = window.opener;	
	if (i == null) {
		document.location = thePage;
	}
	else {
		opener.location = thePage;
	    self.close();
	}
}

function changeHREF(theAnchor, theFile, aWidth, aHeight) {
	var windowName = 'Window'+windowCount;
	var theLink = 'JavaScript:openNewWindow(\''+theFile+'\',\''+windowName+'\','+aWidth+','+aHeight+')';
	theAnchor.href = theLink;
	theAnchor.target = "";
}

function openNewWindow(fileName,windowName,theWidth,theHeight) {
	window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight);
	windowCount++;
}

//-->




