// JavaScript Document
<!-- Hidden from ghetto browsers
function pop(url) {
  var mywin = window.open(url,'Information','width=660,height=400,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes');
  mywin.focus();
}

function pop3(url) {
	  var w = screen.width;
	  var h = screen.height;
	  w = w - 40;
	  h = h - 120;
	  var mywin3 = window.open(url,'2ndchance','width='+w+',height='+h+',top=0,left=0,scrollbars=yes,toolbar=yes,status=yes,location=yes,resizable=yes');
}

function thankpop(url)
{
		var thankwin = window.open(url);
}
// ghetto browsers rejoice -->