if (args.date != (void 0)) {date = args.date} else {var date = 200010;}
var dateID = new Array(200010,200009,200008,200007,200005,200004,200003,200002,200001,199911,199910);
var dateName = new Array("October 2000","September 2000","August 2000","July 2000","May 2000","April 2000","March 2000","Februrary 2000","January 2000","November 1999","October 1999");

function dspArchiveList(dateID,dateName,date) {
	var str = "";
	str += '<FORM NAME="press" ACTION="press.htm">';
	str += '<P><IMG SRC="images/gui/hed-press_news.gif" WIDTH=300 HEIGHT=25 ALT="" BORDER="0"><BR><SELECT NAME="date" onChange="submitForm();">';
	for (var i=0; i < dateID.length; i++) {
		str += '<OPTION VALUE="'+dateID[i]+'" ';
		if (date == dateID[i]) {str += 'SELECTED';}
		str += '>'+dateName[i]+'</OPTION>';
	}
	str += '</SELECT></P>';
	str += '</FORM>';
	return str;
}
function submitForm() {
	document.forms["press"].submit();
}
function opnMiniCol(title) {
	var str = "";
	//str += '<TABLE WIDTH="100%" BGCOLOR="ff9900" BORDER="0" CELLSPACING="0" CELLPADDING="1"><TR><TD>\n';
	str += '<TABLE WIDTH="100%" BACKGROUND="images/gui/fade-blue.gif" BORDER="0" CELLSPACING="0" CELLPADDING="10"><TR><TD>\n';
	str += '<DIV><IMG SRC="images/gui/pixel-ff9900.gif" WIDTH=150 HEIGHT=1 ALT="" BORDER="0"></DIV>\n';
	str += '<DIV class="DarkBlue" id="Sm" ALIGN=CENTER>'+title+'</DIV>\n';
	str += '<DIV><IMG SRC="images/gui/pixel-ff9900.gif" WIDTH=150 HEIGHT=1 ALT="" BORDER="0"></DIV>\n';
	return str;
}
function clsMiniCol() {
	var str = "";
	str += '<BR></TD></TR></TABLE>\n';
	//str += '</TD><TD><IMG SRC="images/gui/pixel.gif" WIDTH=1 HEIGHT=1 ALT="" BORDER="0"></TD></TR></TABLE>\n';
	return str;
}
function opnSingleCol() {
	var str = "";
	str += '<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR VALIGN=TOP><TD WIDTH="250" nowrap>\n';
	return str;
}
function dspMargin() {
	var str = "";
	str += '</TD><TD>&nbsp;&nbsp;&nbsp;</TD><TD WIDTH="250" nowrap>\n';
	return str;
}
function clsSingleCol() {
	var str = "";
	str += '</TD></TR></TABLE>\n';
	return str;
}
function opnDoubleCol() {
	var str = "";
	str += '<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0">\n';
	return str;
}
function clsDoubleCol() {
	var str = "";
	str += '</TABLE>\n';
	return str;
}
function dspMiniCol(img,title,date,text) {
	var str = "";
	str += '<P>';
	str += '<DIV class="Blue"><B>'+title+'</B></DIV>';
	str += '<DIV><IMG SRC="images/gui/pixel-ff9900.gif" WIDTH=150 HEIGHT=1 ALT="" BORDER="0"></DIV>';
	str += '<DIV class="Sm" id="DarkBlue">'+date+'</DIV>';
	str += '<DIV><SPAN class="Blue"><IMG ';
	if ((navigator.appVersion.indexOf("MSIE") != -1)) {
		str += "STYLE='border-style: solid;border-width: 1pt;border-color:#333399'\n";
	} else {
	
	}
	str += 'ALIGN=RIGHT SRC="images/content/logos/'+img+'-sm.gif" WIDTH=50 ALT="" BORDER="1" VSPACE="2" HSPACE="2"></SPAN>'+text+'</DIV>';
	str += '</P>';
	return str;
}
function dspSingleCol(img,title,date,text) {
	var str = "";
	str += '<P>';
	str += '<DIV class="Red"><B>'+title+'</B></DIV>';
	str += '<DIV><IMG SRC="images/gui/pixel-ff9900.gif" WIDTH=250 HEIGHT=1 ALT="" BORDER="0"></DIV>';
	str += '<DIV class="Sm" id="DarkBlue">'+date+'</DIV>';
	str += '</P>';
	str += '<P><IMG SRC="images/content/logos/'+img+'.gif" WIDTH=100 ALT="" BORDER="0" ALIGN=RIGHT VSPACE="2" HSPACE="5">'+text+'</P><BR><BR>';
	return str;
}
function dspDoubleCol(img,title,date,text) {
	var str = "";
	str += '<TR VALIGN="bottom"><TD width=345 nowrap><B class="Red">'+title+'</B></TD><TD width=155 nowrap></TD></TR>';
	str += '<TR><TD colspan=2 bgcolor="FF9900"><IMG SRC="images/gui/pixel.gif" WIDTH=1 HEIGHT=1 ALT="" BORDER="0"></TD></TR>';
	str += '<TR VALIGN="top">';
	str += '	<TD><DIV class="Sm" id="DarkBlue">'+date+'</DIV><P>'+text+'</P><BR></TD>';
	str += '	<TD ALIGN="CENTER" VALIGN="MIDDLE"><IMG SRC="images/content/logos/'+img+'.gif" WIDTH=100 ALT="" BORDER="0" VSPACE="2"></TD>';
	str += '</TR>';
	return str;
}

