﻿// JScript File
function OpenNewWindow(wpath)
{
   window.open(wpath,null,"height=500,width=550,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes");    
}

//Sachin Sinnarkar
//<Script to call the Image Dialog box>
function OpenImageDialog(wnd, field, dlgURL)
{
    ImageDialog.ImageName="";
    if(wnd.showModalDialog(dlgURL,ImageDialog,'dialogHeight:490px;dialogWidth:375px')== true )
    {
        field.value = ImageDialog.ImageName;
    }
    else
    {
        return;
    }
}

function ImageDialog()
{
 var ImageName;
}
//</Script to call the Image Dialog box>


//<Scrip to close the Image the Dialog>
function sendAndClose(selObj )
{
  window.dialogArguments.ImageName = selObj;
  window.returnValue=true;
  window.close();
}
//</Scrip to close the Image the Dialog>

function ClearTextBoX(field)
{
    field.value="";
    return;
}


//[BACKUP]
////<Script to call the Image Dialog box>
//function OpenImageDialog(wnd, field, dlgURL)
//{
//    ImageDialog.ImageName="";
//    if(wnd.showModalDialog(dlgURL,ImageDialog,"dialogHeight:150px;dialogWidth:300px;")== true )
//    {
//        field.value = ImageDialog.ImageName;
//    }
//    else
//    {
//        return;
//    }
//}

//function ImageDialog()
//{
// var ImageName;
//}
////</Script to call the Image Dialog box>