// JavaScript Document


var newwindow;
var newwindow2;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=735,width=590,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
}

function popspot(url)
{
	newwindow2=window.open(url,'newWin','height=201,width=590,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow2.focus()}
}
