              
function checkrequired(which) {
	var pass=true;
	if  (document.images) {
		for (i=0;i<which.length;i++) {
		var tempobj=which.elements[i];
			if (tempobj.name.substring(0,8)=="required") {
			   if (((tempobj.type=="text"||tempobj.type=="textarea")&& tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&& tempobj.selectedIndex==0)) {
			   		
					pass=false;
					break;
					//return true;
		   		}
			}
	 	}
    }
	if (!pass) {
		shortFieldName=tempobj.name.substring(8,30).toUpperCase();
		alert("Please make sure the "+shortFieldName+" field was properly completed.");
		return false;
	}
	else
	return true;
}





function Upload(sPicURL) { 
 window.open( "upload.aspx?id="+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=350"); 
} 


function Popup2() { 
 window.open( "radio.asp", "popupwin", "toolbar=0,scrollbars=0,resizable=0,HEIGHT=180,WIDTH=300,location=0,statusbar=0,menubar=0,resizable=0"); 
}

function Popup() { 
 window.open( "/rgplayer.htm", "popupwin", "toolbar=0,scrollbars=0,resizable=0,HEIGHT=340,WIDTH=620,location=0,statusbar=0,menubar=0,resizable=0"); 
} 

