// JavaScript Document

function jumpPage(newLoc) {

		newPage = newLoc.options[newLoc.selectedIndex].value;

		if (newPage != "") {
			
			window.parent.location.href = newPage
		}
	}

function popUpWindow(URLStr, left, top, width, height){ 
 popUpWindow = open(URLStr, 'popUpWind', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}  

function popUpScroll(URLStr, left, top, width, height){ 
 popUpScroll = open(URLStr, 'popUpWind', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}  

function openLinkList() {

//	var w;
//	w = open("https://hqintra1.hq.usace.army.mil/hqhome/intralinks.htm",'popUpWind','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=600,height=300,left=5, top=5,screenX=5,screenY=5');
//	document.getElementById("listArea").innerHTML=w.document.dList.innerHTML;
//	w.close();

//	location.href = "https://hqintra1.hq.usace.army.mil/hqhome/intralinks.htm";

window.parent.document.all.idLinkList.src="https://hqintra1.hq.ds.usace.army.mil/hqhome/linklist.htm";
}


     
function updateDate2()
{
	var x = new String(new Date());

	if(navigator.appName == "Netscape"){ // Netscape
	 x = "Today is " + x.substring(0,10) + ", " + x.substring(11,15);
	}
	else { // IE
	 x = "Today is " + x.substring(0,10) + ", " + x.substring(23,28);
	}
	 //x = "Today is " + x.substring(0,10) + ", " + x.substring(23,28);
	//document.getElementById("dateInfo").innerHTML=x;
	document.write(x);
}
     

function newWindah(opplist,oppWin, winview)  {
		oppWindah = window.open(opplist, oppWin, winview);
} 

