function validateMenu() {
	with (document.indexForm) {
		var a = 0;
		for (var i=0; i < service.length; i++) {
			if (service[i].checked) a = true;
		}
		if (!a) {
			alert ("Please select your service");
			return false;
		} else {
		return submit();
		}
	}
}

function playMp3(){

	var subWindow = window.open("mp3/stream.html","def","height=220,width=220" );

}

function popUpWin(mypage, myname, w, h, scroll) { 
var winl = (screen.width - w) / 2; 
var wint = (screen.height - h) / 2; 
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',' 
win = window.open(mypage, myname, winprops) 
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } 
}

function textCounter(field,cntfield,maxlimit) {
	if (field.value.length > maxlimit){
		field.value = field.value.substring(0, maxlimit);
	} else {
	cntfield.value = maxlimit - field.value.length;
	}
}
