///////////////////////////////////
// Popup.js 2003 Codezwiz             ///
// Telli telli@codezwiz.com           ///
// http://codezwiz.com/  :-)         // /
//////////////////////////////////


function popitup(url)
{
	newwindow=window.open(url,'name','height=480,width=640,top=50,left=150,resizable');
	if (window.focus) {newwindow.focus()}
	return false;
}
