// JavaScript Document
function videocategory(t,s,p){
	switch(t){
		//OPEN
		case 1:
			for (vc=s; vc<=p; vc++){
				document.getElementById('vc' +vc).style.display="inline";
			}
		break;
		
		//HIDDEN
		case 0:
		
		break;
	}
}
