<!-- 
function openPopUpscrollyes(sourcefile, w, h) {
    win = window.open(sourcefile,"menu1","width="+w+",height="+h+",scrollbars=yes,menubar=no,toolbar=no,screenX=100,screenY=30,left=100,top=30");
	win.focus();
}

function newWindow(address,width,height,scroll) {
    contentsWindow = window.open(address, "contentsWin", "width="+width+",height="+height+",scrollbars="+scroll+"");
    return false;
}

var focusStyle = "font-weight:bold; background-color:#C4D9E7";
var blurStyle = "font-weight:normal;background-color:#f0f0f0";

function labelFocus(field) {
	elem = field.name + '_label';
	document.getElementById(elem).style.cssText = focusStyle;
}
function labelBlur(field)  {
	elem = field.name + '_label';
	document.getElementById(elem).style.cssText = blurStyle;
}
function dateKey(e,field) {
	if (window.event)
		key = window.event.keyCode;
	else if (e)
		key = e.which;
	else
		key = 0;
	if ((key == 8) || (key == 46)) {
		field.value = "";
		return false;
	}
	else
		return true;
}
-->




