//open new windows

	var popup = null;

	function open_sport(url) {
	  popup = window.open(url,'sport','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=40,left=40,width=500,height=540');
	}
	function blowOut() {
	  if (popup != null && popup.open) popup.close();
	}
	
	var popup = null;

	function open_sponsor(url) {
	  popup = window.open(url,'sponsor','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=40,left=40,width=500,height=540');
	}
	function blowOut() {
	  if (popup != null && popup.open) popup.close();
	}
	
	var popup = null;

	function open_state(url) {
	  popup = window.open(url,'state','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=40,left=40,width=500,height=540');
	}
	function blowOut() {
	  if (popup != null && popup.open) popup.close();
	}
	
	var popup = null;

	function open_date(url) {
	  popup = window.open(url,'date','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=40,left=40,width=500,height=540');
	}
	function blowOut() {
	  if (popup != null && popup.open) popup.close();
	}

	var popup = null;

	function open_news(url) {
	  popup = window.open(url,'news','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=40,left=40,width=500,height=540');
	}
	function blowOut() {
	  if (popup != null && popup.open) popup.close();
	}
	
	var popup = null;

	function open_ads(url) {
	  popup = window.open(url,'ads','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=40,left=40,width=400,height=450');
	}
	function blowOut() {
	  if (popup != null && popup.open) popup.close();
	}
	
	var popup = null;

	function open_info(url) {
	  popup = window.open(url,'info','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=40,left=40,width=350,height=450');
	}
	function blowOut() {
	  if (popup != null && popup.open) popup.close();
	}
	
	
	window.onfocus=blowOut;
