function describe(Text) {
window.status=Text;
return true;
}

function clearstatus() {
window.status='';
}

function NewWindow(URL) {	 
 popup=window.open(URL,"","height=400,width=500,toolbar=no,menubar=no,scrollbars=yes")
}

function NewWindow2(URL) {	 
 popup=window.open(URL,"Synopsis","height=640,width=480,toolbar=no,menubar=no,scrollbars=yes")
}

function validate() {
 if (window.confirm('Are you sure ?'))
    return true;
 else    
    return false;
}	

function msaction(imgname,imgfile) {
if (document.images)
	document.images[imgname].src='./images/' + imgfile + '.gif';
}

function CellOver(elem) {
elem.style.backgroundColor='#00734A';
elem.style.borderColor='#00FF00';
}

function CellOut(elem) {
elem.style.backgroundColor='black';
elem.style.borderColor='';
}

function validateColorScheme() {
    if (document.colorForm.p_colorschemename.value.length==0) {
         alert('Please enter a NAME for your Color Scheme.');
         return false;
    }
    else   
         return true;
}