//queriousDesigns.com

function openwin (url,width,height,extras) {
	if (window.open) {
		if (width < 0 || height < 0) {
			newWin = window.open(url,"new_win",extras);
		} else {
			newWin = window.open(url,"new_win","width="+ width +",height="+ height +","+ extras);
		}
	} else {
		return false;
	}
}
/*
extras can include:
-------------------
resizable:   allows the user to resize the new window from it's original size
scrollbars:  let's the user scroll down the page
location:    the location bar is where you type in a url (http://www.....)
toolbars:    this includes back, forward, refresh/reload, etc...
menubars:    this includes, file, edit, etc...
status:		 the status is located at the bottom of the browser window
*/
