//----------------------------------------
//    	functions.php
//----------------------------------------

//Created:		01-01-2008
//By:			Sander Dona
//Edited:		-	
//By:			-



//HIDE OR SHOW CONTENT SELECTION
function check(field)
{ 
	if (field.value == "2"){
		
 		document.getElementById('content_id').style.display = "";
		
  	} 
   	else 
   	{ 
      	document.getElementById('content_id').style.display = "none";
   	} 
}
