// JavaScript Document

function openWinX (URL) {
aWindow=window.open (URL, "thewindow", "toolbar=no,width=780,height=600,status=no,scrollbars=yes,resizable=yes,menubar=no");
}

/* opens new window */
function openWin (URL) {
aWindow=window.open (URL, "thewindow", "toolbar=no,width=800,height=600,status=no,scrollbars=yes,resizable=yes,menubar=no");
}
/* end of 'opens new window' function */

/* opens new different sized window */
function openWin2 (URL) {
aWindow=window.open (URL, "thewindow", "toolbar=no,width=540,height=700,status=no,scrollbars=yes,resizable=yes,menubar=no");
}
/* end of 'opens new window' function */

/* opens new different sized window */
function openWin3 (URL) {
aWindow=window.open (URL, "thewindow", "toolbar=no,width=700,height=550,status=no,scrollbars=yes,resizable=yes,menubar=no");
}
/* end of 'opens new window' function */


/* opens new different sized window */
function openWin4 (URL) {
aWindow=window.open (URL, "thewindow", "toolbar=no,width=600,height=450,status=no,scrollbars=yes,resizable=yes,menubar=no");
}
/* end of 'opens new window' function */




/* opens new different sized window */
function openToiecDemo (URL) {
aWindow=window.open (URL, "thewindow", "toolbar=no,width=750,height=600,status=no,scrollbars=yes,resizable=yes,menubar=no");
}
/* end of 'opens new window' function */