<!--
function openwin(loc,w,h,opt){

// test to see if variable is available, if not, use default value

width = (w) ? w:300;
height = (h) ? h:400;
option = (opt) ? opt +',width='+ w +',height='+ h :'toolbar=no,status=no,width='+ width +',height='+ height 
+',scrollbars=yes';

// open window
newwin = window.open(loc,"newwin",option);

}

-->
