// JavaScript Document

/******************************************
Ralph's club registration
Launch new window for ccprogram*/
// This code creates the EasyWebFill pop-up window.
if(document.all)
 {
  NS = false;
  IE = true;
 }
  else
 {
  NS = true;
  IE = false;
 }

var putItThere = null;

var chasm = screen.availWidth;
var mount = screen.availHeight;

var w = 0;
var h = 0;

function launchCenter(w,h,source,scrollbarsYN,statusYN) {
	if (NS) {
		h += (35)
	}
	putItThere = window.open(source,'posB','width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5) + ',scrollbars=' + scrollbarsYN + ',status=' + statusYN);
}
