// popup window  -  popup.js

function WideJavaWin(wintype) {
SmallWin1=window.open(wintype,"SmallWin1","toolbar=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=no,width=700,height=240");
SmallWin1.window.focus()
 }


/* This next function added navagation=yes and toobar=yes to get the reload
   back and other funtions to work.
*/
function LrgJavaWin(wintype) {
SmallWin2=window.open(wintype,"SmallWin2","titlebar=no,navigation=yes,toolbar=yes,directories=no,location=no,status=no,scrollbars=yes,menubar=no,resizable=yes,width=700,height=420");
SmallWin2.window.focus()
 }



function MedJavaWin(wintype) {
SmallWin2=window.open(wintype,"SmallWin2","toolbar=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,width=370,height=220");
SmallWin2.window.focus() 
 }

function SmJavaWin(wintype) {
SmallWin3=window.open(wintype,"SmallWin3","toolbar=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,width=350,height=175");
SmallWin3.window.focus()
 }

// -->

