var mediacode = new Array();

mediacode["form"] = new Object();

mediacode["form"]["mediacode_user_request"] = "incident";
mediacode["form"]["mediacode_catalog_request"] = "catalog";
mediacode["form"]["mediacode_service_request"] = "service";
mediacode["form"]["mediacode_watch_registration"] = "watchreg";
mediacode["form"]["mediacode_semper"] = "semper";

mediacode["form"]["mediacode_lefigaro"] = "lefigaro";
mediacode["form"]["mediacode_iltridente"] = "iltridente";

function getMediacode(form){
	try{
		return mediacode['form'][form];
	
	}
	catch(e){
		showMsg('MediaCode['+form+']');
	}
	
}

 function showMsg(msg) {
		Ext.MessageBox.show({
			title: 'Error',
			msg: msg,
			buttons: Ext.MessageBox.OK,
			icon: Ext.MessageBox.ERROR
		});
	}
