<!--
// basic popup code embelished by code by PPK at http://www.xs4all.nl/~ppk/js/

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','fullscreen=yes, scrollbars=no, resize=no, toolbar=no, status=no, location=no, menubar=no');
	if (window.focus) {newwindow.focus()}
}

function poptastic2(url)
{
	newwindow=window.open(url,'name','width=990,height=742, scrollbars=no, resize=no, toolbar=no, fullscreen=no, status=no, location=no, menubar=no');
	if (window.focus) {newwindow.focus()}
}
// -->"1000" height="780"990x560

function poptastic3(url)
{
	newwindow=window.open(url,'name','width=700,height=400, scrollbars=no, resize=no, toolbar=no, fullscreen=no, status=no, location=no, menubar=no');
	if (window.focus) {newwindow.focus()}
}
