var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=254,width=320,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}
function poptastico(url,wdth,hght)
{
	var features =
        'width='        + wdth +
        ',height='      + hght +
        ',directories=' + 'no' +
        ',menubar='     + 'no' +
        ',scrollbars='  + 'no' +
        ',status='      + 'no' +
        ',toolbar='     + 'no' +
        ',resizable='   + 'no';
	var newwindow = window.open('popup.html','name',features);
	if (window.focus){newwindow.focus();
  newwindow.document.write('<html><head><style type="text/css">');
  newwindow.document.write('body {margin: 0; background-color: #000000;}');
  newwindow.document.write('</style>');
  newwindow.document.write('</head>');
  newwindow.document.write('<body>');
  newwindow.document.write('<img src="'+url+'"/>');
  newwindow.document.write('</body></html>');
  newwindow.document.close();
	}
}
