// JavaScript Document
<!--This Script is owned by Ssart.net-->
var monthtext=['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sept','Oct','Nov','Dec'];

function populatedropdown(dayfield, monthfield, yearfield){
var today=new Date()
var dayfield=document.getElementById(dayfield)
var monthfield=document.getElementById(monthfield)
var yearfield=document.getElementById(yearfield)
for (var i=0; i<31; i++)
dayfield.options[i]=new Option(i+1, i+1)
dayfield.options[today.getDate()]=new Option(today.getDate(), today.getDate(), true, true) //select today's day
for (var m=0; m<12; m++)
monthfield.options[m]=new Option(monthtext[m], monthtext[m])
monthfield.options[today.getMonth()]=new Option(monthtext[today.getMonth()], monthtext[today.getMonth()], true, true) //select today's month
var thisyear=today.getFullYear()
for (var y=0; y<20; y++){
yearfield.options[y]=new Option(thisyear, thisyear)
thisyear+=1
}
yearfield.options[0]=new Option(today.getFullYear(), today.getFullYear(), true, true) //select today's year
}
<!-- START FADED ICONS SCRIPT -->
<!-- This script DOES NOT belong to me -->
<!-- The script is taken from http://www.inflames.com -->

	function fixUglyIE() {
		for (a in document.links) document.links[a].onfocus = document.links[a].blur;
	}

	if (document.all) {
		document.onmousedown = fixUglyIE;
	}

	function high(which2) {
		theobject = which2;
		highlighting = setInterval("highlightit(theobject)", 50);
	}

	function low(which2) {
		clearInterval(highlighting);
		which2.filters.alpha.opacity = 40;
	}

	function highlightit(cur2) {
		if (cur2.filters.alpha.opacity < 100) {
			cur2.filters.alpha.opacity += 10;
		} else {
			if (window.highlighting) {
				clearInterval(highlighting);
			}
		}
	}

	function MM_displayStatusMsg(msgStr) { //v1.0
	  status = msgStr;
	  document.MM_returnValue = true;
	}

<!-- STOP FADED ICONS SCRIPT -->