function dispWday( sImagePath )
{
	var now = new Date();
	var d   = now.getDay();
	if( d == 0 )document.write( "<img src='" + sImagePath + "top/wday/sun.gif' alt='SUN'>" );
	else if( d == 1 )document.write( "<img src='" + sImagePath + "top/wday/mon.gif' alt='MON'>" );
	else if( d == 2 )document.write( "<img src='" + sImagePath + "top/wday/tue.gif' alt='TUE'>" );
	else if( d == 3 )document.write( "<img src='" + sImagePath + "top/wday/wed.gif' alt='WED'>" );
	else if( d == 4 )document.write( "<img src='" + sImagePath + "top/wday/thu.gif' alt='THU'>" );
	else if( d == 5 )document.write( "<img src='" + sImagePath + "top/wday/fri.gif' alt='FRI'>" );
	else if( d == 6 )document.write( "<img src='" + sImagePath + "top/wday/sat.gif' alt='SAT'>" );

	document.write( "<br>" );

}

function dispDate()
{
	var now = new Date();
	h   = now.getHours();
	m   = now.getMinutes();
	s   = now.getSeconds();

}

function linkTarget( sLinkUrl )
{
	window.open( sLinkUrl, "" );

}
