// Popup Windows JavaScript

function popitup(url) {
	newwindow=window.open(url,'name','height=450,width=690,location=no,status=o,scrollbars=no,resizable=no');
	if (window.focus) {newwindow.focus()}
	return false;
}

function dpop(url, wide, high)
{window.open(url,"popup",'width=' + wide + ',height=' + high +',scrollbars=yes');
}

