<!--
var putItThere = null; 
var chasm = screen.availWidth;
var mount = screen.availHeight;
var width = 0;
var height = 0;
var scroll='scrollbars=yes';
function deadCenter(page,name,width,height,scroll) {
  putItThere = window.open(page,name,'width=' + width + ',height=' + height + ',left=' + ((chasm - width - 10) * .5) + ',top=' + ((mount - height - 30) * .5)+',' +scroll);
}

var url;
function build(url,name){
window.open(url, name, "top=0, left=100, scrollbars=0, toolbar=1, width=800, height=600");

}

var url;
function flyer(url,name){
window.open(url, name, "top=0, left=100, scrollbars=1, toolbar=1, menubar=1, width=800, height=600");

}
//-->
