///////////////////////////////////////////////////////

function checkMember(){

if(document.SearchForm.user_id.value==0){


alert_color = "#EFF1F9";

alert_str = "You must be a member to use this option. If you are already a member, please sign in.";

alert_box = "<TABLE BORDER=0 WIDTH='100%' HEIGHT='100%' CELLPADDING=0 CELLSPACING=0>" + 
"<TR BGCOLOR='#EFF1F9' >" + 
"<TD COLSPAN=2 ROWSPAN=2 WIDTH=5 HEIGHT=5><IMG SRC='./image/corner-tl.gif' HEIGHT=5 WIDTH=5></TD>" + 
"<TD BGCOLOR='#EFF1F9' WIDTH='100%' HEIGHT=1 ><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=1></TD>" + 
"<TD COLSPAN=2 ROWSPAN=2 WIDTH=5 HEIGHT=5  VALIGN='TOP'><IMG SRC='./image/corner-tr.gif' HEIGHT=5 WIDTH=5></TD>" + 
"</TR>" + 
"<TR BGCOLOR='#EFF1F9' >" + 
"<TD WIDTH='1' HEIGHT=4><IMG SRC='nothing.gif' HEIGHT=4 WIDTH=1></TD>" + 
"</TR>" + 
"<TR BGCOLOR='#EFF1F9' >" + 
"<TD HEIGHT=1 BGCOLOR='#EFF1F9'><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=1></TD>" + 
"<TD WIDTH='4'><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=4></TD>" + 
"<TD  WIDTH='100%' COLSPAN=1 HEIGHT=1><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=1></TD>" + 
"<TD WIDTH='4'><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=4></TD>" + 
"<TD ROWSPAN=1 HEIGHT=1 BGCOLOR='#EFF1F9'><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=1></TD>" + 
"</TR>" + 
"<TR BGCOLOR='#EFF1F9' >" + 
"<TD HEIGHT=1 BGCOLOR='#EFF1F9'><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=1></TD>" + 
"<TD></TD>" + 
"<TD WIDTH='100%' COLSPAN=1 HEIGHT='100%' VALIGN='center' ALIGN='center' style='padding-left:8px;padding-right:8px;padding-bottom:8px'>" + 
"<TABLE WIDTH='100%' HEIGHT=50 BGCOLOR='#EFF1F9'>" + 
"<TR>" + 
"<TD WIDTH=10><IMG SRC='nothing.gif' WIDTH=10 HEIGHT=1></TD>" + 
"<TD><A class=normal>" + alert_str + "</A></TD>" + 
"<TD WIDTH=10><IMG SRC='nothing.gif' WIDTH=10 HEIGHT=1></TD>" + 
"</TR>" + 
"</TABLE>" + 
"</TD>" + 
"<TD></TD>" + 
"<TD ROWSPAN=1 HEIGHT=1 BGCOLOR='#EFF1F9'><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=1></TD>" + 
"</TR>" + 
"<TR BGCOLOR='#EFF1F9' >" + 
"<TD COLSPAN=2 ROWSPAN=2 WIDTH=5 HEIGHT=5><IMG SRC='./image/corner-bl.gif' HEIGHT=5 WIDTH=5></TD>" + 
"<TD WIDTH='100%' ><IMG SRC='nothing.gif' HEIGHT=4 WIDTH=1></TD>" + 
"<TD COLSPAN=2 ROWSPAN=2 WIDTH=5 HEIGHT=5  VALIGN='TOP'><IMG SRC='./image/corner-br.gif' HEIGHT=5 WIDTH=5></TD>" + 
"</TR>" + 
"<TR BGCOLOR='#EFF1F9' >" + 
"<TD WIDTH='1' HEIGHT=1  BGCOLOR='#EFF1F9'><IMG SRC='nothing.gif' HEIGHT=1 WIDTH=1></TD>" + 
"</TR>" + 
"</TABLE>" + 
"<TABLE BORDER=0 WIDTH='100%' HEIGHT='100%' CELLPADDING=0 CELLSPACING=0>" + 
"<TR><TD COLSPAN=1><IMG SRC='nothing.gif' WIDTH='1' HEIGHT='15'></TD></TR>" + 
"</TABLE>";

document.getElementById("insert_alert").innerHTML = "";
document.getElementById("insert_alert").innerHTML = alert_box;


window.scrollTo(0,0);
if(document.SearchForm.private){
document.SearchForm.private.value = 2;
}

document.SearchForm.save_search.checked=false;
document.SearchForm.search_name.value = "";
document.SearchForm.email_alert.checked=false;


}



}
///////////////////////////////////////////////////////

