function SetOptions(the_select, the_array) 
{
    
    the_select.options.length = the_array.length;
  
    for (loop=0; loop < the_array.length; loop++) 
    {
        
        var grade = the_array[loop];
        var theStart = grade.substr(0,3);
        
                
        if (theStart == "SEL"){
        	the_select.options[loop].selected = true;
       

        	var theEnd = grade.substr(3);
        	the_select.options[loop].text = theEnd;
        }
        else{
        	the_select.options[loop].selected = false;
        	the_select.options[loop].text = the_array[loop];
        }
                
       	the_select.options[loop].value = the_array[loop];
       	
       
    }

}


function MWJ_findObj( oName, oFrame, oDoc ) {
	if( !oDoc ) { if( oFrame ) { oDoc = oFrame.document; } else { oDoc = window.document; } }
	if( oDoc[oName] ) { return oDoc[oName]; } if( oDoc.all && oDoc.all[oName] ) { return oDoc.all[oName]; }
	if( oDoc.getElementById && oDoc.getElementById(oName) ) { return oDoc.getElementById(oName); }
	for( var x = 0; x < oDoc.forms.length; x++ ) { if( oDoc.forms[x][oName] ) { return oDoc.forms[x][oName]; } }
	for( var x = 0; x < oDoc.anchors.length; x++ ) { if( oDoc.anchors[x].name == oName ) { return oDoc.anchors[x]; } }
	for( var x = 0; document.layers && x < oDoc.layers.length; x++ ) {
		var theOb = MWJ_findObj( oName, null, oDoc.layers[x].document ); if( theOb ) { return theOb; } }
	if( !oFrame && window[oName] ) { return window[oName]; } if( oFrame && oFrame[oName] ) { return oFrame[oName]; }
	for( var x = 0; oFrame && oFrame.frames && x < oFrame.frames.length; x++ ) {
		var theOb = MWJ_findObj( oName, oFrame.frames[x], oFrame.frames[x].document ); if( theOb ) { return theOb; } }
	return null;
}

function update_chars_left(oNameCheck, oNameValue, intLimit)
{
	// set the object 
	var TO_CHECK   = MWJ_findObj(oNameCheck);
	var TO_VAL     = MWJ_findObj(oNameValue);

	// set the len
	var TO_CHECK_VAL = TO_CHECK.value;
	var TO_CHECK_LEN = TO_CHECK_VAL.length;

	// set the vars left
	var CHARS_LEFT = "";

	// check to see if the length is more
	// if it is, trim it down to 500 chars
	if (TO_CHECK_LEN > intLimit)
	{
		// its more, so wee warn them
		alert("You have reached your character limit.\n\nPlease continue to add your details in to\nthe full description box below.");
		TO_CHECK.value = TO_CHECK_VAL.substr(0,499);
		CHARS_LEFT = 0;
	}else{
		// its not more so we just calculate the limit
		CHARS_LEFT = (intLimit - TO_CHECK_LEN);
	}

	// set the value in the form
	TO_VAL.value = CHARS_LEFT;

}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}