function goTo(u){
	window.open(u);
}
function sStatus(u2){
	window.status=u2;
}
function cStatus(){
	window.status="";
}
function chNewsletter(){

	 for (x=0; x<document.letter.m_mode.length; x++){ 
		  if (document.letter.m_mode[x].checked == true){ 
			 var md= document.letter.m_mode[x].value;       
		  } 
	} 

var m=document.getElementById('mail').value;
var xmlHttp;
  try{    //FFOpera8Safari    
	xmlHttp=new XMLHttpRequest();    
  }
  catch (e){    //IE   
	  try{      
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");      
	  }
	  catch (e){
		  try{
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");        
		  }
		  catch (e){
			  window.location="http://www.lovercorner.com/aj_reg_newsletter.php?mail="+m+"&m_mode="+md;
			  return false;        
		  }      
	  }    
  }
    xmlHttp.onreadystatechange=function(){
      if(xmlHttp.readyState==4){
		 alert(xmlHttp.responseText);
        }
      }
	var url="aj_reg_newsletter.php?mail="+m+"&m_mode="+md+"&sid="+Math.random();
    xmlHttp.open("GET",url,true);
    xmlHttp.send(null);  
	
}


var delayb4scroll=2000 //delay (2000=2 seconds)
var marqueespeed=1 //speed (larger faster 1-10)
var pauseit=1 //Pause onMousever (0=no 1=yes)

///NOT EDIT BELOW///

var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var actualheight=''

function scrollmarquee(){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}

function initializemarquee(){
cross_marquee=document.getElementById("vmarquee")
cross_marquee.style.top=0
marqueeheight=document.getElementById("marqueecontainer").offsetHeight
actualheight=cross_marquee.offsetHeight
if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){
cross_marquee.style.height=marqueeheight+"px"
cross_marquee.style.overflow="scroll"
return
}
setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)
}

if (window.addEventListener)
window.addEventListener("load", initializemarquee, false)
else if (window.attachEvent)
window.attachEvent("onload", initializemarquee)
else if (document.getElementById)
window.onload=initializemarquee