// JavaScript Document


<!--
function clearDefault(el) 
{
	if (el.defaultValue==el.value) el.value = ""
}

function newWindow(sourceFile,windowWidth,windowHeight){
	if (navigator.appName.indexOf('Netscape') != -1){
		nswidth=windowWidth-2
		nsheight=windowHeight-2
		openString = 'scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,left=0,top=0,width=' + nswidth + ',height=' + nsheight
	}
	else{
		openString = 'scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,left=0,top=0,width=' + windowWidth + ',height=' + windowHeight
	}
	globalOpenString = openString
	globalSourceFile = sourceFile
	detailWindow = window.open(globalSourceFile,'print',globalOpenString)
	detailWindow.focus()
}
//-->
