/*
var http;

function init() {
	try {
		// Firefox, Opera 8.0+, Safari
		http=new XMLHttpRequest();
	} catch (e) {
		// Internet Explorer
		try {
			http=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				http=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				alert("Your browser does not support AJAX!");
				return false;
			}
		}
	}
}*/

function fileReport( list ) {
	var thisValue = list.options[list.selectedIndex].value;
	if (thisValue == "new") {
		location.assign("?id=40&opt=report");
	} else if (thisValue != "null") {
		location.assign("?id=41&wid="+thisValue);
	}
	
}
