// popup window  -  popup.js


/* Alli, This can be used to bring up external windows of different
   sizes without closing or leaving the original window  - Sammy
*/

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()
 }

function LrgJavaWin(wintype) {
SmallWin2=window.open(wintype,"SmallWin2","titlebar=no,toolbar=no,directories=no,location=no,status=no,scrollbars=yes,menubar=no,resizable=yes,width=500,height=375");
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()
 }

// -->

