
function see_ad(url_var)
	{
    // This launches a new window in the centre of the screen, and then
    // focuses it if window.focus() is supported.
		
		winurl = "/discounts/template/log_click.cfm" + url_var;
    winname = "ck_it_link";
		winfeatures = "toolbar=1,location=1,directories=0,status=0,menubar=0,scrollbars=1,resizable=1" 		 
    newwin = window.open(winurl,winname,winfeatures);
		newwin.focus();
      if (newwin.opener == null) newwin.opener = window; 
      newwin.opener.name = "myparent"; 	
  }	 