// Wordsworthweb.com External Javascript
// Last Updated: 8/20/07

// Open links in a new window

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=200,width=400,resizable=yes,scrollbars=yes,toolbar=yes,statusbar=yes');
	if (window.focus) {newwindow.focus()}
}


var newwindow;
function poptastic2(url)
{
	newwindow=window.open(url,'name','height=500,width=500,resizable=yes,scrollbars=yes,toolbar=no,statusbar=no');
	if (window.focus) {newwindow.focus()}
}

