function Validate(oForm,oSkip) {
		oNodes = oForm.elements;
		var Ret = true;
		for(var i=0; i<oNodes.length; i++) {
			if(Ret && oSkip.match('(^|,)'+oNodes[i].name+'($|,)')==null){
				sName = oNodes[i].name.replace(/_/,' ');
				sValue = new String(oNodes[i].value);
				if(sValue=='') {
					Ret = false;
					alert('Please fill in the '+sName+' field.');
					oNodes[i].focus();
				}
			}
		}
	return Ret;
}

function owin(sUrl) {
	window.open(sUrl,'Testimonial','toolbar=no,location=no,directories=no, status=no,menubar=no,scrollbars=yes,resizable=no,width=400,height=600,left=50,top=50,right=50');
}