//
    // Modal window
    //Creating a popup window to stay in front of the original window and not allow your visitor to interact with the original window until the new window has closed
    // http://javascript.about.com/library/blmodal.htm
    //

function modalWin(uri,width,height){
    alert(uri+width+height);
    if(window.showModalDialog)
    {
        window.showModalDialog(uri,"name",
        "dialogWidth:"+width+"px;dialogHeight:"+height+"px");
    }else{
        window.open(uri,'name',"height="+height+",width="+width+",toolbar=no,directories=no,status=no,continued from previous linemenubar=no,scrollbars=no,resizable=no" ,modal=yes);
    }
}

function dothis(){
    alert('in ');
    return 1;
}