<!--Hide from non-JavaScript browsers

var bookmarkurl="http://www.gallerydirectart.com";
var bookmarktitle="GalleryDirectArt.com";

function addbookmark(){
        if (document.all) 
        window.external.AddFavorite(bookmarkurl,bookmarktitle)
}


function disable_right_click(e)
{
    var browser = navigator.appName.substring ( 0, 9 );
    var event_number = 0;
    if (browser=="Microsoft")
        event_number = event.button;
    else if (browser=="Netscape")
        event_number = e.which;

    if ( event_number==2 || event_number==3 )
        {
        alert ("All Images are Copyrighted  and protected with encoded watermarks.");
        return (false);
        }

    return (true);
}

function trap_images_mouse_events ()
{
    if ( document.images )
        {
        for (var pic=0; pic<document.images.length; pic++)
            document.images[pic].onmousedown = disable_right_click;
        }
}

window.onload = trap_images_mouse_events;


	today=new Date();

	day=today.getDay();

	date=today.getDate();

	month=today.getMonth();
	if(day==0) dayName="Sunday"
	else if(day==1) dayName="Monday"
	else if(day==2) dayName="Tuesday"
	else if(day==3) dayName="Wednesday"
	else if(day==4) dayName="Thursday"
	else if(day==5) dayName="Friday"
	else dayName="Saturday"
	
	if(month==0) monthName="January"
	else if(month==1) monthName="February"
	else if(month==2) monthName="March"
	else if(month==3) monthName="April"
	else if(month==4) monthName="May"
	else if(month==5) monthName="June"
	else if(month==6) monthName="July"
	else if(month==7) monthName="August"
	else if(month==8) monthName="September"
	else if(month==9) monthName="October"
	else if(month==10) monthName="November"
	else monthName="December"

document.write(dayName+", "+monthName+" "+date);

//end hide-->