/*openSmallerWindow*/

//This function opens a page in a smaller window with set positioning.

//Specify page's URL when calling function.



function openSmallerWindow(url) {

OpenWin = this.open(url, "CtrlWindow", "left=0,top=75,height=530,width=590,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");

OpenWin.focus();

}

