<!--

/*************
This Is a Function To open a new browser window.
*************/

function openBigWindow(page) {
     OpenWin = document.open(page, "ANewWindow", "toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,height=130,width=200");
}	

// -->
<!--

/*************
This Is a Function To close a new browser window.
*************/

function closeWindow() {
     CloseWin = this.close();
}	

// -->

<!--
/**************
This function creates a windw with only borders
***************/

// (C) 2001 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header


function popEd() {
var theURL = 'http://www.teamquinn.com/wheretogeted.htm';
var width  = 205;
var height = 160;
// newWindow = window.alert(theURL);
newWindow = window.open(theURL,'newWindow','toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,width='+width+',height='+height);
}
// -->
