if (document.images) {
   off = new MakeArray(1);
   over = new MakeArray(1);
   off[1].src="/onair/dfx/images/vote_o.gif";
   over[1].src="/onair/dfx/images/vote_m.gif";
}
function MakeArray(n) {
   this.length = n
   for (var i = 1; i<=n; i++) {
      this[i] = new Image()
   }
   return this;
}
function Over(name,number){
if (document.images){
      name.src = over[number].src;
   }
}
function Off(name,number){
if (document.images){
      name.src = off[number].src;
   }
}
function PopWindow(nameoffile,nameofwindowr,windowwidth,windowheight)
{
	var PopUpTotalWidth = windowwidth;
	var LeftPixel1 = ((screen.availWidth) - PopUpTotalWidth) / 2;
	var PopUpTotalHeight = windowheight;
	var TopPixel = ((screen.availHeight) - PopUpTotalHeight) / 2;
	popup = window.open(nameoffile,nameofwindowr,'top='+TopPixel+',screeny='+TopPixel+',left='+LeftPixel1+',screenx='+LeftPixel1+',width='+windowwidth+',height='+windowheight+',buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no');
	if (popup.blur)
	{
		popup.focus();
	}
}
<!-- Radio.SonicNet - coBrand 
function launchRSN(varStationID)
{
var face = 'MTVDOTCOM';
var tuner;
tuner = window.open('http://radio.sonicnet.com/player/launchplayer.asp?A='+varStationID+'&face='+face,'TUNER','width=470,height=302','toolbar=no,resizable=no,scrollbars=no');
}
// --> Radio.SonicNet - coBrand 
function dateCheck(){
			usertime = new Date();
			oktime = new Date();
			usertime.setYear(parseInt(document.theform.year.value));
			usertime.setMonth(parseInt(document.theform.month.options[document.theform.month.options.selectedIndex].value) - 1);
			usertime.setDate(parseInt(document.theform.day.options[document.theform.day.options.selectedIndex].value));
			okyear = oktime.getYear();
			if(okyear < 1000) okyear += 1900;
			okyear -=13;
			oktime.setYear(okyear);
			if(oktime.getTime() >= usertime.getTime()) allright = 2;
			else allright = 1;
		}
		
		function validFilled(){
			allright = 0;
			if((document.theform.month.options[document.theform.month.options.selectedIndex].value > 0)&&(document.theform.day.options[document.theform.day.options.selectedIndex].value > 0)&&(!isNaN(parseInt(document.theform.year.value)))&&(((parseInt(document.theform.year.value)).toString()).length == 4)){
				dateCheck();
			}
		}
		function submitScript(){
			validFilled();
			switch(allright){
				case 0:
					alert('Please enter a valid 4 number year.  ex. 1999');
					allright = false;
					break;
				case 1:
					alert('Sorry, you must be 13 or older to submit a question.');
					allright = false;
					break;
				case 2:
					//alert('Your birthday checks out.  Proceed :)');
					allright = true;
					break;
				default:
					alert('went to default');
					allright = false;
					break;
			}
			return allright;
		}
