//<!--- this is for images --->
function openwindow(ImageName) {
	newWindow = window.open("","_newWindow","toolbar=no,scrollbars=no,menubar=no,resizable=yes,status=no,width=500,height=500");
	newWindow.document.write('<html><head></head><body onload="window.focus();"><img src="' + ImageName + '" onload="self.resizeTo(Math.min(this.width+30,500),Math.min(this.height+50,500))"></body></html>');
	newWindow.focus();
	newWindow.document.close();
	newWindow = null;
}

//<!--- this is for a data page --->
leftCorn2=0;
topCorn2=0;
function openwindow2(TableName,WindowName,width,height){
	window.name="main";
	newWindow=window.open(TableName,WindowName,'toolbar=no,scrollbars=yes,menubar=no,resizable=yes,status=yes,width='+width+',height='+height+',left='+leftCorn2+',top='+topCorn2+'')
}

function openwindow3(TableName,WindowName,width,height){
	newWindow=window.open(TableName,WindowName,'toolbar=no,scrollbars=no,resizable=yes,status=yes')
}

function openwindow5(TableName,WindowName,width,height){
	newWindow=window.open(TableName,WindowName,'toolbar=yes,scrollbars=yes,menubar=yes,resizable=yes,status=yes,width='+width+',height='+height+',left='+leftCorn2+',top='+topCorn2+'')
}

function openwindowhelp(src) {
	newWindow=window.open('http://' + window.location.hostname + '/html/help/' + src + '.htm','help','toolbar=no,scrollbars=yes,menubar=no,resizable=yes,status=no,titlebar=no,width=350,height=100');
}

function closewindow() {

	var oWindow = window.opener;
	window.blur();
	
	if ( oWindow )
		if ( !oWindow.closed ) oWindow.focus();
		
	window.close();
}