//<!--
    // POPUP WINDOWS

    var newwindow;
    function poptastic(url,h,w)
    {
	   newwindow=window.open(url,'name','height='+h+',width='+w);
	   if (window.focus) {newwindow.focus()}
    }
    // -->

