
function gotoSub() {	
 if (document.myForm.username.value == "") {
		alert( "Please, enter a valid username" );
		document.myForm.username.focus();
	} else
		location.href='piclub/'+ document.myForm.username.value+'/default.htm';
	location.href='http://www.indoceanic.com/cgi-bin/dir.pl';
	}


function afficheDate(){
	var month = new Array(12);
	month[0] = "January";
	month[1] = "February";
	month[2] = "March";
	month[3] = "April";
	month[4] = "May";
	month[5] = "June";
	month[6] = "July";
	month[7] = "August";
	month[8] = "September";
	month[9] = "October";
	month[10] = "November";
	month[11] = "December";
	var d = new Date();
	return month[d.getMonth()]+ " " + d.getDate() + ", " + d.getFullYear();
}