// JavaScript Document

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=480px,width=640px, resizable=yes,scrollbars=yes,status=yes,toolbar=yes,dependent=yes,menubar=yes');
	if (window.focus) {newwindow.focus()}
	
}

