﻿function toggle_menu(id){

var box = document.getElementById(id);
var sts = box.style.display;
var count = document.getElementById('ctnr_total').value;

	if(!sts || sts == 'none'){
	box.style.display = 'none';
	box.style.display = 'block';
	}else{
	box.style.display = 'none';
	}
	
	for(i = 1; i < count; i++){
	boxid = 'ctnr_'+i;
		if(boxid != id )
		document.getElementById(boxid).style.display = 'none';
	}

}

// Open APPFORM
function openwindow(){
window.open("appform.html","Requests","top=50,left=50', menubar=0,resizable=0,scrollbars=1,width=600,height=450");
}