function getdate()
{
	var isnMonths=new Array("January","February","March","April","May","June","July","August","September","October","Novemeber","December");
	var isnDays= new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
	today=new Date();
	hrs=today.getHours();
	min=today.getMinutes();
	sec=today.getSeconds();
	clckh=""+((hrs>12)?hrs-12:hrs);
	clckm=((min<10)?"0":"")+min;
	clcks=((sec<10)?"0":"")+sec;
	clck=(hrs>=12)?"p.m.":"a.m.";
	year=today.getYear(); 
	if(year<1000) 
	{
		year+=1900;
	}
	var curr_date = isnDays[today.getDay()]+", "+isnMonths[today.getMonth()]+" "+today.getDate()+", " + year;
	return(curr_date);
}
function wsdc_pics(imageName,imageWidth,imageHeight,alt,posLeft,posTop)
{
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write("<html><title>"+alt+"<\/title><body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onBlur=\"self.close();\">");
	newWindow.document.write("<img src="+imageName+" width="+imageWidth+" height="+imageHeight+" alt=\""+alt+"\">");
	newWindow.document.write("<\/body><\/html>");
	newWindow.document.close();
	newWindow.focus();
}
