// JavaScript Document
var newwindow;
function poptastic(url) {
	newwindow=window.open(url,'name','height=500, width=240, left=20, top=20, toolbar=no, menubar=no, directories=no, location=no, scrollbars=yes, status=no, resizable=yes, fullscreen=no');
	newwindow.focus();
}
