

	/*************************************************************
	##		Page created  :	9-SEP-08							##
	##		Page modified :										##	
	##		Created By    :	Ashish Srivastava 					##
	##		Company       : Ultra Global Software Technologies 	##
	##															##
	*************************************************************/
	


function showDesc(id,page,width,height,left,top,resizable){
	var url = page + '?id=' + id;
	window.open(url,'mywindow','width='+width+',height='+height+',left='+left+',top='+top+',resizable='+resizable+'1');
}

function confirmationBox(message,formName) {
	var answer = confirm(message)
	if (answer==true){
		formName.submit();
		return true;
	}
	else{
		return false;
	}
}

function showLeftmenu(id){
	for(i=1;i<=5;i++){
		document.getElementById('leftmenu' + i).style.display='none';
	}
		document.getElementById('leftmenu' + id).style.display='block';
}