function Error(intID, strName, strDescription, strSendedData, strReceivedData, strMethod){
	this.intID = intID;
	this.strName = strName;
	this.strDescription = strDescription;
	this.strMethod = strMethod;
	this.strSendedData = strSendedData;
	this.strReceivedData = strReceivedData;
	this.showErrorInfo = showErrorInfo;
}

function showErrorInfo(){
	var arg = new Array();
	arg[0] = this.strName
	arg[1] = this.strDescription
	arg[2] = this.strSendedData
	arg[3] = this.strReceivedData
	arg[4] = this.strMethod
	showModalDialog("ErrorViewer.htm", arg, "dialogHeight:250px;status:0;dialogWidth:450px;help:0;resizable:0;scroll:0")
}
