// JavaScript Document
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'contact','height=400,width=500,right=500,top=300,resizable=no,scrollbars=no,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}
