// 

function stopError() {
  return true;
}

window.onerror = stopError;

if(top != self.parent) {
  top.location = self.parent.location;
}

function DropDownHandler(x){
	var url = x.options[x.selectedIndex].value;
	if(url.indexOf(".aspx?ex=")>0 ){
		top.open(url,"_blank");
		return;
	}
	if(url.indexOf(".pdf")>0 ){
		top.open(url,"_blank");
		return;
	}
	if(url.indexOf(".doc")>0 ){
		top.open(url,"_blank");
		return;
	}
	if(url.indexOf(".ppt")>0 ){
		top.open(url,"_blank");
		return;
	}
	if(url.indexOf(".xls")>0 ){
		top.open(url,"_blank");
		return;
	}
	top.location.href = url;
}

//