function nemd(){
    window.open();
    window.setInterval();
    window.setInterval(abc,1000);
}

//----------------------- highlight Row ------------
var oldRowColor="#FFFFFF";
var newRowColor="#EEEEDD";

function HighlightRow(myRow){
//	oldRowColor = document.getElementById(myRow).getAttribute('bgcolor');
	document.getElementById(myRow).setAttribute('bgcolor',newRowColor,0);
}
function DelightRow(myRow){
	document.getElementById(myRow).setAttribute('bgcolor',oldRowColor,0);
}

function DestroyObj(varBoxName){
    objDialog = document.getElementById(varBoxName);
    objDialog.style.display="none";
    //alert(varBoxName);
    //document.body.removeChild(objDialog);
}
function WriteDiagBody(varMessage,varTitle){
 //  alert("sfsdf");
   document.getElementById("DialogBody").innerHTML=varMessage;
   document.getElementById("DialogHeader").innerHTML=varTitle;
}

function LocateDialogBox(varBoxName){
//      var msgbox = document.getElementById(varBoxName);
//      var x = (window.innerWidth / 2) - (msgbox.offsetWidth / 2);
//      var y = (window.offsetHeight / 2) - (msgbox.offsetHeight / 2);              
//      msgbox.style.top = y;
//      msgbox.style.left = x;

    objDialog = document.getElementById(varBoxName);
    objDialog.style.display="block";
}

