// JavaScript Document
function hidestatus() {
	window.status=''
	return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

//empty field value
function remove_text(field) { 
	field.value = "";
}
// open window function
function window_open(page, name, x, y) {
	newWindow = window.open(page,name,'scrollbars=yes,width='+x+',height='+y+',left=50,top=100');
  	newWindow.creator=self;
  	newWindow.focus(); 
}
function localDate() {
	var TheSeparator = "-";
	// Show or do not show the day of the week;
	var ShowDay ="yes";
	var Days = new Array("zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag");
	var TheDate = new Date();
	var TheWeekDay = TheDate.getDay();
	var Day ="";
	if (ShowDay == "yes") {
    	Day = Days[TheWeekDay];
    	Day += ", ";
	}
	var TheMonth = TheDate.getMonth() + 1;
	if (TheMonth < 10) {
		TheMonth = "0" + TheMonth;
	}
	var TheMonthDay = TheDate.getDate();
	if (TheMonthDay < 10) {
		TheMonthDay = "0" + TheMonthDay;
	}
	var TheYear = TheDate.getYear();
	if (TheYear < 1000) {
		TheYear += 1900;
	}
	var D = "";
	D = Day+TheMonthDay+TheSeparator+TheMonth+TheSeparator+TheYear;
	return D;
}

	
