var newwindow;
function poptastic(url)
{
	url = 'images/' + url;
	newwindow=window.open(url,'name','height=660,width=660,resizable=yes,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}

function poptastic2(url)
{
	url = 'images/' + url;
	newwindow=window.open(url,'name','height=660,width=800,resizable=no,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}