function poptastic(url)
{
	//newwindow=window.open(url,'name','height=300,width=300');
	newwindow=window.open(url,'name','height=500,width=400,left=150,top=150,resizable=yes,scrollbars=no,toolbar=no,status=yes');	
	if (window.focus) {newwindow.focus()}
}

function poptasticLarge(url)
{
	//newwindow=window.open(url,'name','height=300,width=300');
	newwindow=window.open(url,'name','height=500,width=400,left=150,top=150,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	
	if (window.focus) {newwindow.focus()}
}