function ShowHeadlines() 
{
    for ( var idx=0; link[idx] != null && idx<4; idx++ )
    {
        document.write( "<a href='" + link[idx] + "' target=_new>" +  subject[idx] + "</a>" );
        document.write( "<br><font size=1>" +  src[idx] + "</font><br><br>" );
	}
}

function ShowStories() 
{
    for ( var idx=0; link[idx] != null; idx++ )
    {
        document.write( "<p> <a href='" + link[idx] + "' target=_new>" +  subject[idx] + "</a><br>" + src[idx] + ", " + date[idx] + "</p>" );
	}
}

function ShowLead(index,displayimage) 
{
    document.write( "<a href=" + link[index] + " target=_new>" + subject[index] + "</a> (" + src[index] + ")" );

	if ( displayimage == "true" ) {
		document.writeln( "<img border=0 width=100 src=" + pic[index] + ">" );
	}

    document.writeln( "<p>" + shrt[index] + "</p>" );
}

function ShowSideBar(index,displayimage) 
{

	if ( displayimage == "true" ) {
		document.writeln( "<img border=0 width=100 src=" + pic[index] + ">" );
	}

    document.write( "<a href=" + link[index] + " target=_new>" + subject[index] + "</a> (" + src[index] + ")" );
    document.writeln( "<p>" + shrt[index] + "</p>" );
}


function DisplayDate() {
    var d=new Date()
    var weekday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var monthname = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

    document.write(weekday[d.getDay()] + " ")
    document.write(d.getDate() + ", ")
    document.write(monthname[d.getMonth()] + " ")
    document.write(d.getFullYear() + " ")
}
