// JavaScript Document

function enlarge(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=700,width=618,left=100,
  top=100,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}
