/*---------------------------------------------------
	/ ___/(_) /____  _____/ __ )__  __    / /___  ___ 
	\__ \/ / __/ _ \/ ___/ __  / / / /_  / / __ \/ _ \
 ___/ / / /_/  __(__  ) /_/ / /_/ / /_/ / /_/ /  __/
/____/_/\__/\___/____/_____/\__, /\____/\____/\___/ 
													 /____/
----------------------------------------------------
Visit http://sitesbyjoe.com TODAY!
----------------------------------------------------
This file is Joe Taylor's collection of Javascript 
functions he uses on his sites.  Feel free to reuse,
but leaving this up top would Joe feel alot better 
about having spent the time writing this.
---------------------------------------------------*/

/* Fixed size Popup function, just set the sizes */
function popitup(url){
	newwindow=window.open(url,'name','width=640,height=480,resizable=yes');
	if (window.focus) {
		newwindow.focus()
		}
	return false;
	}
	
	
