﻿<!--
// Copyright 2003 Bontrager Connection, LLC    
// Code obtained from http://WillMaster.com/    
// modified by Billy March 2006 to work with ASP.net master pages and forms    
function WithoutContent(ss, len) {    
if(ss.length >= len) { return false; }    
return true;    
}    
    
function NoneWithContent(ss) {    
for(var i = 0; i < ss.length; i++) {    
	if(ss[i].value.length > 0) { return false; }    
	}    
return true;    
}    
    
function NoneWithCheck(ss) {    
for(var i = 0; i < ss.length; i++) {    
	if(ss[i].checked) { return false; }    
	}    
return true;    
}    
    
function WithoutCheck(ss) {    
if(ss.checked) { return false; }    
return true;    
}    
    
function WithoutSelectionValue(ss) {    
for(var i = 0; i < ss.length; i++) {    
	if(ss[i].selected) {    
		if(ss[i].value.length) { return false; }    
		}    
	}    
return true;    
}    
//-->