var cursor=new StarCursor();
var popup=new StarPopup();
var is_ie=(navigator.appName=="Microsoft Internet Explorer");
var drop_line_popup_busy=false;
window.onscroll=function(){
if(is_ie){
popup.centerPopup();
}
};
function processDropLine(_1,_2){
if(drop_line_popup_busy){
return;
}
drop_line_popup_busy=true;
var _3={};
_3["a"]=64;
_3["p"]="dropLine";
_3["from"]=_2;
_3["name"]=$(_1+"_name").value;
_3["email"]=$(_1+"_email").value;
_3["comment"]=$(_1+"_comment").value;
var _4=new StarRequest(false,true);
_4.onload=function(_5){
if(_5["email"]){
$(_1+"_email_error").style.display="";
}
if(_5["comment"]){
$(_1+"_comment_error").style.display="";
}
if(length(_5)==0){
popup.loadPopup(64,"dropLineConfirmation",true);
}
drop_line_popup_busy=false;
};
$(_1+"_email_error").style.display="none";
$(_1+"_comment_error").style.display="none";
_4.getURL(null,_3);
};

