
function openModalDialog(url, width, height)
		{
		    window.showModalDialog(url,window, "dialogWidth:" + width + "px;dialogHeight:" + height + "px;resizable:no;scroll:no;status:no;help:no");
		    //window.dialogArguments.location.href=window.dialogArguments.location.href;
		}
function OpenWindow(url, width, height)
{
	if(isNaN(width)) width = 500;
	if(isNaN(height)) width = 250;
	window.open(url, "", "width=" + width + ",height=" + height + ",resizable=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}