// JavaScript Document
function modalWin(errorpage) {


if (window.showModalDialog) {  // for IE
	window.showModalDialog(errorpage,"name","dialogWidth:255px;dialogHeight:250px");
} else {  // for Firefox
	window.open(errorpage,'name','height=255,width=250,modal=yes');
}
//this.window.name='henry'; // beginning work for modal dialog to target this window


}
