/** Created by Jeffrey Moncrieff  march 19 2008  under the (GPL) 
* open window script 
*/

var newwindow;

function poptastic(url)
{
	newwindow=window.open(url,'name','height=800,width=800 , scrollbars=yes ,status=yes ,resizable=yes  ');
	if (window.focus) {newwindow.focus()}
}

