//<!--This is the loginbox code.
function set_form_target(type)
{
  if(type == "adv")
  {
  	document.form1.action = 'https://publishers.clickbooth.com/'; 
  	document.getElementById('publisher_swap').className = "changingbackground_loginbox_adv";
  	document.getElementById('email_login').name = 'DL_AUTH_USERNAME';
  	document.getElementById('password_login').name = 'DL_AUTH_PASSWORD'; 
  }
  else if(type == "pub")
  {
/*
	  document.form1.action = 'https://publishers.clickbooth.com/'; 
	  document.getElementById('publisher_swap').className = "changingbackground_loginbox_pub";
	  document.getElementById('email_login').name = 'DL_AUTH_USERNAME';
	  document.getElementById('password_login').name = 'DL_AUTH_PASSWORD';
*/
  	document.form1.action = 'https://my.clickbooth.com/validate_login.php';
  	document.getElementById('publisher_swap').className = "changingbackground_loginbox_pub";
  	document.getElementById('email_login').name = 'username';
  	document.getElementById('password_login').name = 'password';
  }
}

//-->

