<!--
function wJump(targ) {
    var newURL = targ;
    var x = 550;
    var y = 400;
    var secPrefix = "";
    var wcfg = "Height=" + y + ",width=" + x +
        ",status=no,location=no,menubar=no,toolbar=no,resizable=no,scrollbars=yes";
    newUrl = secPrefix + newURL;
    newWin = window.open(newURL, "new", config=wcfg);
    newWin.focus();
}

function openPopUpNew(URL) {
	newWindow = window.open(URL,"popup","scrollbars,HEIGHT=450,WIDTH=644, resizable=yes");
  	newWindow.focus();
}

var showDateShort = 1;
var showDate= 2;
var showDateTime= 3;
var showTime= 4;
function ShowDateTime(dateStyle)
{
	var today = new Date();
	var dStr = "";
	switch (dateStyle)
	{
		case showDateShort:
			dStr = today.toDateString();
			break;
		case showDateTime:
			dStr = today.toLocaleString();
			break;
		case showTime:
			dStr = today.toLocaleTimeString();
			break;
		case showDate:
		default:
			dStr = today.toLocaleDateString();
			break;
	}
	document.write(dStr);
}
// -->

