<!--

function openWindow(htmlPage,width,height,windowName)
{

//trouble shooting for firefox. wants var my_new_window to be defined as window open
//alert("the html page = " + htmlPage);
//var my_new_window = window.open(htmlPage,"my_new_window","menubar=1,resizable=1,width=350,height=250"); 

var windowName = window.open(htmlPage,windowName,"'toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,top=30,left=30,screenX=30,screenY=30,width=" + width + ",height=" + height + "'")
windowName.focus();
}

// -->

