function modalWin(url, width, height) 
{

    if(width == null)
    {
        width = 900;
    }
    if(height == null)
    {
        height = 700;
    }
    
//    if (window.showModalDialog) 
//    {
//        var link = "dialogWidth:"+width+"px;dialogHeight:"+height+"px";
//        window.showModalDialog(url,"name",link);
//    } 
//    else 
//    {
        var link2 = 'height='+height+',width='+width+',toolbar=no,directories=no,status=no,continued from previous linemenubar=no,scrollbars=yes,resizable=no ,modal=yes'
        window.open(url,'name', link2);
   // }
}
