	
	allforms = new Array ();
	allforms['cform'] = new Array (
		 'name' , new Array ( 'trim(value).length > 0'  , 'Please enter your name' ) ,
		'email' , new Array (  'is_email(value)' , 'Please enter a valid e-mail address' ) ,		
		'subject' , new Array ( 'trim(value).length > 0'  , 'What is the subject of your message?' ) ,
		'message' , new Array ( 'trim(value).length > 0'  , 'What is your message' ) ,
		'captchastr' , new Array ( 'trim(value).length > 0'  , 'Please enter the word verification string' ) 
		
	);
	allforms['sform'] = new Array (
		 'companyname' , new Array ( 'trim(value).length > 0'  , 'Please enter company name' ) ,
		'email' , new Array (  'value.length == 0 || is_email(value)' , 'Please enter a valid e-mail address or leave it blank' ) ,		
		'quality' , new Array ('is_checked (value) ' , 'Please rate quality of product' ),		
		'turnaround' , new Array ('is_checked (value) ' , 'Please rate turn-around time' ),		
		'specs' , new Array ('is_checked (value) ' , 'Please rate how did the product conform to specifications' ),		
		'responsiveness' , new Array ('is_checked (value) ' , 'Please rate our responsiveness to your requests' ),		
		'communication' , new Array ('is_checked (value) ' , 'Please rate ease of communication with us' ),		
		'repeat' , new Array ('is_checked (value) ' , 'Would you place an order with us again' ),		
		'recommend' , new Array ('is_checked (value) ' , 'Would you recommend us to others' ),		
		'captchastr' , new Array ( 'trim(value).length > 0'  , 'Please enter the word verification string' ) 
	);
