/* author: mathivanan@irissoftek.com*/
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 07/28/2009 */  

function showDiv(id) {
	for (var i = 1; i < 4; i++){
		var theDiv = document.getElementById('res' + i);
		var thePlus = document.getElementById('tab' + i);
		var theLink = document.getElementById('link' + i);  
		var theCont = document.getElementById('footer');
		if (id < 1) {
			id = 1;
		}
		if (i == id) {
			theDiv.style.display = "";
			thePlus.style.background = 'url(/g/tabactive.gif) top left repeat-x';
			theLink.style.color = '#fff';
			theCont.style.bottom = '';
			theCont.style.bottom = '0';
		} else {
			theDiv.style.display = "none";
			thePlus.style.background = 'transparent';
			theLink.style.color = '#555';
			theCont.style.bottom = '';
			theCont.style.bottom = '0';
		}
	}
}

function changeContent(id,shtml) {
   if (document.getElementById || document.all) {
      var el = document.getElementById? document.getElementById(id): document.all[id];
      if (el && typeof el.innerHTML != "undefined") el.innerHTML = shtml;
   }
}

function toggleLayer(whichLayer,stater) {
	var elem, vis;
	if( document.getElementById ) // this is the way the standards work
		elem = document.getElementById( whichLayer );
	else if( document.all ) // this is the way old msie versions work
		elem = document.all[whichLayer];
	else if( document.layers ) // this is the way nn4 works
		elem = document.layers[whichLayer];
	vis = elem.style;
	// if the style.display value is blank we try to figure it out here
	if (stater == 'show') {
		vis.display = 'block';
	} else {
		vis.display = 'none';
	}
	//if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)
	//	vis.display = (elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';
	//vis.display = (vis.display==''||vis.display=='block')?'none':'block';
}

function changeClass(Elem, myClass) {
	var elem;
	if(document.getElementById) {
		var elem = document.getElementById(Elem);
	} else if (document.all){
		var elem = document.all[Elem];
	}
	elem.className = myClass;
}

function menu_goto( menuform ) {
	var selecteditem = menuform.newurl.selectedIndex ;
	var newesturl = menuform.newurl.options[ selecteditem ].value ;
	if (newesturl.length != 0) {
		menuform.newurl.options[0].selected=true;
		location.href = newesturl ;
	}
}

// Start tooltips code --------------------------------------------------------------
var offsetx = 12;
var offsety =  8;
function newelement(newid) { 
    if(document.createElement)
    { 
        var el = document.createElement('div'); 
        el.id = newid;     
        with(el.style)
        { 
            display = 'none';
            position = 'absolute';
        } 
        el.innerHTML = '&nbsp;'; 
        document.body.appendChild(el); 
    } 
} 
var ie5 = (document.getElementById && document.all); 
var ns6 = (document.getElementById && !document.all); 
var ua = navigator.userAgent.toLowerCase();
var isapple = (ua.indexOf('applewebkit') != -1 ? 1 : 0);
function getmouseposition(e) {
    if(document.getElementById) {
        var iebody=(document.compatMode && 
        	document.compatMode != 'BackCompat') ? 
        		document.documentElement : document.body;
        pagex = (isapple == 1 ? 0:(ie5)?iebody.scrollLeft:window.pageXOffset);
        pagey = (isapple == 1 ? 0:(ie5)?iebody.scrollTop:window.pageYOffset);
        mousex = (ie5)?event.x:(ns6)?clientX = e.clientX:false;
        mousey = (ie5)?event.y:(ns6)?clientY = e.clientY:false;

        var lixlpixel_tooltip = document.getElementById('tooltip');
        lixlpixel_tooltip.style.left = (mousex+pagex+offsetx) + 'px';
        lixlpixel_tooltip.style.top = (mousey+pagey+offsety) + 'px';
    }
}
function tooltip(tip) {
    if(!document.getElementById('tooltip')) newelement('tooltip');
    var lixlpixel_tooltip = document.getElementById('tooltip');
    lixlpixel_tooltip.innerHTML = tip;
    lixlpixel_tooltip.style.display = 'block';
    document.onmousemove = getmouseposition;
}
function exit() {
    document.getElementById('tooltip').style.display = 'none';
}
// End tooltips code ----------------------------------------------------------------

// functions for experimental menu
var navHover = function() {
	if (document.all&&document.getElementById) {
		var lis = document.getElementById("navmenu").getElementsByTagName("LI");
		for (var i=0; i<lis.length; i++) {
			lis[i].onmouseover=function() {
				this.className+=" iehover";
			}
			lis[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" iehover\\b"), "");
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);
function changeRemote(id,newtext){
	document.getElementById(id).innerHTML=newtext;
}
// end experimental nav functions

// Start div scroller code ----------------------------------------------------------
// gives up and down scroll buttons to images, spans, ... named up_name, down_name, respectively.
// will keep the default scroll_box's style overflow if it encounters errors (so make overflow: auto;)
// usage: put this after the scrollbox div:  var div_scroll1 = new TextScroll('div_scroll1', 'scroll_box');

function TextScroll(scrollname, div_name, up_name, down_name) {
    this.div_name = div_name;
    this.name = scrollname;
    this.scrollCursor = 0;
    this.speed = 10;
    this.timeoutID = 0;
    this.div_obj = null;
    this.up_name = up_name;
    this.dn_name = down_name;
	{
        if (document.getElementById) {
            var div_obj = document.getElementById(this.div_name);
            if (div_obj) {
                this.div_obj = div_obj;
                this.div_obj.style.overflow = 'hidden';
            }
            var div_up_obj = document.getElementById(this.up_name);
            var div_dn_obj = document.getElementById(this.dn_name);
            if (div_up_obj && div_dn_obj) {
                div_up_obj.onmouseover = function() { eval(scrollname + ".scrollUp();") };
				div_up_obj.onmouseout = function() { eval(scrollname + ".stopScroll();") };
				div_dn_obj.onmouseover = function() { eval(scrollname + ".scrollDown();") };
				div_dn_obj.onmouseout = function() { eval(scrollname + ".stopScroll();") };
            }
        }
    }
	this.stopScroll = function() {
        clearTimeout(this.timeoutID);
    }
	this.scrollUp = function() {
        if (this.div_obj) {
            this.scrollCursor = (this.scrollCursor - this.speed) < 0 ? 0 : this.scrollCursor - this.speed;
            this.div_obj.scrollTop = this.scrollCursor;
            this.timeoutID = setTimeout(this.name + ".scrollUp()", 60);
        }
    }
	this.scrollDown = function() {
        if (this.div_obj) {
            this.scrollCursor += this.speed;
            this.div_obj.scrollTop = this.scrollCursor;
            this.timeoutID = setTimeout(this.name + ".scrollDown()", 60);
        }
    }
	this.resetScroll = function() {
        if (this.div_obj) {
            this.div_obj.scrollTop = 0;
            this.scrollCursor = 0;
        }
    }
}
// end div scroller code ------------------------------------------------------------

navHover = function() {
if (document.all&&document.getElementById) {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

// pop up window function
function openWin(url, width, height, winName) {
	var win;
	var windowName;
	var params;
	windowName  = winName;
	params = "width="+width+",";
	params += "height="+height + ",";
	params += "scrollbars=yes,";
	params += "top=50,";
	params += "left=50,";
	params += "toolbar=0,";
	params += "location=0,";
	params += "directories=0,";
	params += "status=0,";
	params += "menubar=0,";
	params += "resizable=0";
	win = window.open(url, windowName, params);
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
/*--------------------------MENU Over------------------------------------------------*/

/*-------------------------- Date Picger start------------------------------------------------*/

var datePickerDivID = "datepicker";
var iFrameDivID = "datepickeriframe";

var dayArrayShort = new Array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa');
var dayArrayMed = new Array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
var dayArrayLong = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
var monthArrayShort = new Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
var monthArrayMed = new Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'June', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec');
var monthArrayLong = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');


var defaultDateSeparator = "-";        // common values would be "/" or "."
var defaultDateFormat = "mdy"    // valid values are "mdy", "dmy", and "ymd"
var dateSeparator = defaultDateSeparator;
var dateFormat = defaultDateFormat;

function displayDatePicker(dateFieldName, displayBelowThisObject, dtFormat, dtSep)
{
  var targetDateField = document.getElementsByName (dateFieldName).item(0);

  if (!displayBelowThisObject)
    displayBelowThisObject = targetDateField;

  if (dtSep)
    dateSeparator = dtSep;
  else
    dateSeparator = defaultDateSeparator;

  if (dtFormat)
    dateFormat = dtFormat;
  else
    dateFormat = defaultDateFormat;

  var x = displayBelowThisObject.offsetLeft;
  var y = displayBelowThisObject.offsetTop + displayBelowThisObject.offsetHeight ;

  var parent = displayBelowThisObject;
  while (parent.offsetParent) {
    parent = parent.offsetParent;
    x += parent.offsetLeft;
    y += parent.offsetTop ;
  }

  drawDatePicker(targetDateField, x, y);
}
function drawDatePicker(targetDateField, x, y)
{
  var dt = getFieldDate(targetDateField.value );

  if (!document.getElementById(datePickerDivID)) {
    var newNode = document.createElement("div");
    newNode.setAttribute("id", datePickerDivID);
    newNode.setAttribute("class", "dpDiv");
    newNode.setAttribute("style", "visibility: hidden;");
    document.body.appendChild(newNode);
  }

  var pickerDiv = document.getElementById(datePickerDivID);
  pickerDiv.style.position = "absolute";
  pickerDiv.style.left = x + "px";
  pickerDiv.style.top = y + "px";
  pickerDiv.style.visibility = (pickerDiv.style.visibility == "visible" ? "hidden" : "visible");
  pickerDiv.style.display = (pickerDiv.style.display == "block" ? "none" : "block");
  pickerDiv.style.zIndex = 10000;

  // draw the datepicker table
  refreshDatePicker(targetDateField.name, dt.getFullYear(), dt.getMonth(), dt.getDate());
}


function refreshDatePicker(dateFieldName, year, month, day)
{
  var thisDay = new Date();

  if ((month >= 0) && (year > 0)) {
    thisDay = new Date(year, month, 1);
  } else {
    day = thisDay.getDate();
    thisDay.setDate(1);
  }
  var crlf = "\r\n";
  var TABLE = "<table cols=7 class='dpTable'>" + crlf;
  var xTABLE = "</table>" + crlf;
  var TR = "<tr class='dpTR'>";
  var TR_title = "<tr class='dpTitleTR'>";
  var TR_days = "<tr class='dpDayTR'>";
  var TR_todaybutton = "<tr class='dpTodayButtonTR'>";
  var xTR = "</tr>" + crlf;
  var TD = "<td class='dpTD' onMouseOut='this.className=\"dpTD\";' onMouseOver=' this.className=\"dpTDHover\";' ";    // leave this tag open, because we'll be adding an onClick event
  var TD_title = "<td colspan=5 class='dpTitleTD'>";
  var TD_buttons = "<td class='dpButtonTD'>";
  var TD_todaybutton = "<td colspan=7 class='dpTodayButtonTD'>";
  var TD_days = "<td class='dpDayTD'>";
  var TD_selected = "<td class='dpDayHighlightTD' onMouseOut='this.className=\"dpDayHighlightTD\";' onMouseOver='this.className=\"dpTDHover\";' ";    // leave this tag open, because we'll be adding an onClick event
  var xTD = "</td>" + crlf;
  var DIV_title = "<div class='dpTitleText'>";
  var DIV_selected = "<div class='dpDayHighlight'>";
  var xDIV = "</div>";


  var html = TABLE;

  html += TR_title;
  html += TD_buttons + getButtonCode(dateFieldName, thisDay, -1, "&lt;") + xTD;
  html += TD_title + DIV_title + monthArrayLong[ thisDay.getMonth()] + " " + thisDay.getFullYear() + xDIV + xTD;
  html += TD_buttons + getButtonCode(dateFieldName, thisDay, 1, "&gt;") + xTD;
  html += xTR;


  html += TR_days;
  for(i = 0; i < dayArrayShort.length; i++)
    html += TD_days + dayArrayShort[i] + xTD;
  html += xTR;


  html += TR;


  for (i = 0; i < thisDay.getDay(); i++)
    html += TD + "&nbsp;" + xTD;

  // now, the days of the month
  do {
    dayNum = thisDay.getDate();
    TD_onclick = " onclick=\"updateDateField('" + dateFieldName + "', '" + getDateString(thisDay) + "');\">";

    if (dayNum == day)
      html += TD_selected + TD_onclick + DIV_selected + dayNum + xDIV + xTD;
    else
      html += TD + TD_onclick + dayNum + xTD;

    // if this is a Saturday, start a new row
    if (thisDay.getDay() == 6)
      html += xTR + TR;

    // increment the day
    thisDay.setDate(thisDay.getDate() + 1);
  } while (thisDay.getDate() > 1)

  // fill in any trailing blanks
  if (thisDay.getDay() > 0) {

      html += TD + "&nbsp;" + xTD;
  }
  html += xTR;

  // add a button to allow the user to easily return to today, or close the calendar
  var today = new Date();
  var todayString = "Today is " + dayArrayMed[today.getDay()] + ", " + monthArrayMed[ today.getMonth()] + " " + today.getDate();
  html += TR_todaybutton + TD_todaybutton;
  html += "<button class='dpTodayButton' onClick='refreshDatePicker(\"" + dateFieldName + "\");'>this month</button> ";
  html += "<button class='dpTodayButton' onClick='updateDateField(\"" + dateFieldName + "\");'>close</button>";
  html += xTD + xTR;

  // and finally, close the table
  html += xTABLE;

  document.getElementById(datePickerDivID).innerHTML = html;
  // add an "iFrame shim" to allow the datepicker to display above selection lists
  adjustiFrame();
}
function getButtonCode(dateFieldName, dateVal, adjust, label)
{
  var newMonth = (dateVal.getMonth () + adjust) % 12;
  var newYear = dateVal.getFullYear() + parseInt((dateVal.getMonth() + adjust) / 12);
  if (newMonth < 0) {
    newMonth += 12;
    newYear += -1;
  }

  return "<button class='dpButton' onClick='refreshDatePicker(\"" + dateFieldName + "\", " + newYear + ", " + newMonth + ");'>" + label + "</button>";
}

function getDateString(dateVal)
{
  var dayString = "00" + dateVal.getDate();
  var monthString = "00" + (dateVal.getMonth()+1);
  dayString = dayString.substring(dayString.length - 2);
  monthString = monthString.substring(monthString.length - 2);

  switch (dateFormat) {
    case "dmy" :
      return dayString + dateSeparator + monthString + dateSeparator + dateVal.getFullYear();
    case "ymd" :
      return dateVal.getFullYear() + dateSeparator + monthString + dateSeparator + dayString;
    case "mdy" :
    default :
      return monthString + dateSeparator + dayString + dateSeparator + dateVal.getFullYear();
  }
}

function getFieldDate(dateString)
{
  var dateVal;
  var dArray;
  var d, m, y;

  try {
    dArray = splitDateString(dateString);
    if (dArray) {
      switch (dateFormat) {
        case "dmy" :
          d = parseInt(dArray[0], 10);
          m = parseInt(dArray[1], 10) - 1;
          y = parseInt(dArray[2], 10);
          break;
        case "ymd" :
          d = parseInt(dArray[2], 10);
          m = parseInt(dArray[1], 10) - 1;
          y = parseInt(dArray[0], 10);
          break;
        case "mdy" :
        default :
          d = parseInt(dArray[1], 10);
          m = parseInt(dArray[0], 10) - 1;
          y = parseInt(dArray[2], 10);
          break;
      }
      dateVal = new Date(y, m, d);
    } else if (dateString) {
      dateVal = new Date(dateString);
    } else {
      dateVal = new Date();
    }
  } catch(e) {
    dateVal = new Date();
  }

  return dateVal;
}


function splitDateString(dateString)
{
  var dArray;
  if (dateString.indexOf("/") >= 0)
    dArray = dateString.split("/");
  else if (dateString.indexOf(".") >= 0)
    dArray = dateString.split(".");
  else if (dateString.indexOf("-") >= 0)
    dArray = dateString.split("-");
  else if (dateString.indexOf("\\") >= 0)
    dArray = dateString.split("\\");
  else
    dArray = false;

  return dArray;
}

function updateDateField(dateFieldName, dateString)
{
  var targetDateField = document.getElementsByName (dateFieldName).item(0);
  if (dateString)
    targetDateField.value = dateString;

  var pickerDiv = document.getElementById(datePickerDivID);
  pickerDiv.style.visibility = "hidden";
  pickerDiv.style.display = "none";

  adjustiFrame();
  targetDateField.focus();


  if ((dateString) && (typeof(datePickerClosed) == "function"))
    datePickerClosed(targetDateField);
}



function adjustiFrame(pickerDiv, iFrameDiv)
{

  var is_opera = (navigator.userAgent.toLowerCase().indexOf("opera") != -1);
  if (is_opera)
    return;


  try {
    if (!document.getElementById(iFrameDivID)) {
      var newNode = document.createElement("iFrame");
      newNode.setAttribute("id", iFrameDivID);
      newNode.setAttribute("src", "javascript:false;");
      newNode.setAttribute("scrolling", "no");
      newNode.setAttribute ("frameborder", "0");
      document.body.appendChild(newNode);
    }

    if (!pickerDiv)
      pickerDiv = document.getElementById(datePickerDivID);
    if (!iFrameDiv)
      iFrameDiv = document.getElementById(iFrameDivID);

    try {
      iFrameDiv.style.position = "absolute";
      iFrameDiv.style.width = pickerDiv.offsetWidth;
      iFrameDiv.style.height = pickerDiv.offsetHeight ;
      iFrameDiv.style.top = pickerDiv.style.top;
      iFrameDiv.style.left = pickerDiv.style.left;
      iFrameDiv.style.zIndex = pickerDiv.style.zIndex - 1;
      iFrameDiv.style.visibility = pickerDiv.style.visibility ;
      iFrameDiv.style.display = pickerDiv.style.display;
    } catch(e) {
    }

  } catch (ee) {
  }

}
//here come to an end of date picker***********************************

/*-------------------------- Date Picger end------------------------------------------------*/

function checkfields()
{
   if(document.forms[0].fname.value=='')
   {
      alert('First Name cannot be left blank');
      document.forms[0].fname.focus();
      return false;
   }
   

   else if(document.forms[0].email.value=='')
   {
      alert('E-mail Id cannot be left blank');
      document.forms[0].email.focus();
      return false;
   }
  
  else
   {
      return true;
   }
}

function focusl()
{ 
  document.forms[0].username.focus();
  document.forms[0].username.value="";   
}


function usrchk()
{
  
   if(document.forms[0].username.value.length==0)
   {
      alert ('Username cannot be blank');
      document.forms[0].username.focus();
      return false;
   }
   else if(document.forms[0].passwd.value.length==0)
   {
      alert('Password cannot be blank');
      document.forms[0].passwd.focus();
      return false;
   }
   
  

   else
   {
      return true;
   }
   
}

function phoneval()
{
     
   var arg1=arguments[0]; 
   var arg2=arguments[1];
   
   if(arg1.value.length==3)
   {
      var old=arg1.value;
      var add="-";
      var po=old+add;
      arg1.value=po;
   }
   
   if(arg1.value.length==7)
   {
      var old=arg1.value;
      var add="-";
      var po=old+add;
      arg1.value=po;
   }
   if(arg1.value.length==12)
   {
      arg2.focus();
   }
}

function phonechk()
{
   var str=arguments[0];
   var field=arguments[1];
   var value = new String();
   var num = "0123456789-";
   var chars = str.split("");

   for (i=0; i<chars.length; i++)
   {
      if (num.indexOf(chars[i]) != -1)
      {
         value+=chars[i];
      }
      else
      {
         alert("Please enter numbers only");
         field.value="";
         field.focus();
         return false;
      }
   }
   if (str!=value)
   {
      str=value;
   }
   return true;
}

function emailchk()
{
   var str=arguments[0];
   var mail=arguments[1];
   var aflag = 0;
   var dflag = 0;
   var z;
   var len;
   
   len=str.length;
   var spflag = 0;
   for(z=0;z<len;z++)
   {
      if(str.charAt(z)=='@')
      {
         aflag++;
      }
      if(str.charAt(z)=='.')
      {
         dflag++;
      }
      if(str.charAt(z)=="'" || str.charAt(z)=='"' || str.charAt(z)=='+' || str.charAt(z)==';' || str.charAt(z)==':'
         || str.charAt(z)=='!' || str.charAt(z)=='*' || str.charAt(z)=='$' || str.charAt(z)=='%' || str.charAt(z)=='A..Z' || str.charAt(z)=='a..z')
      {
         spflag++;
      }
   }
   if(spflag==1)
   {
      alert('Sorry, Special Characters can not be entered.');
      mail.value="";
      mail.focus();
      return false;
   }
   else if((aflag==1)&&(dflag>=1))
   {
      return true;
   }
   else if(str!='')
   {
      alert('Please enter a valid Email ID, Thanks!');
      mail.value="";
      mail.focus();
      return false;
   }
}

/*<script language="JavaScript">
MSFPhover = 
  (((navigator.appName == "Netscape") && 
  (parseInt(navigator.appVersion) >= 3 )) || 
  ((navigator.appName == "Microsoft Internet Explorer") && 
  (parseInt(navigator.appVersion) >= 4 ))); 
function MSFPpreload(img) 
{
  var a=new Image(); 
  a.src=img; 
  return a; 
}
</script>

<script language="JavaScript"><!--
if(MSFPhover) 
{ 
MSFPnav1n=MSFPpreload("image/btn_matri_reg.jpg"); 
MSFPnav1h=MSFPpreload("image/btn_matri_reg_tag.jpg");
}// --></script>
 <tr>
  <td class="sub_menu"><div align="left"><span class="style2"><a href="matrimony_registration.php" target="_parent" language="JavaScript" onMouseOver="if(MSFPhover) document['MSFPnav1'].src=MSFPnav1h.src" onMouseOut="if(MSFPhover) document['MSFPnav1'].src=MSFPnav1n.src"><img src="image/btn_matri_reg.jpg" border='0' name="MSFPnav1"> </a></span></div></td>
              </tr>
<!--First Button End A-->

<!--Second Button start B-->			  			  
<script language="JavaScript"><!--
if(MSFPhover) 
{ 
MSFPnav2n=MSFPpreload("image/btn_admin_log.jpg"); 
MSFPnav2h=MSFPpreload("image/btn_admin_log_tab.jpg");
}// --></script>
			  
 <tr>
 <td class="sub_menu"><div align="left"><span class="style2"><a href="adminlogin.php" target="_parent" language="JavaScript" onMouseOver="if(MSFPhover) document['MSFPnav2'].src=MSFPnav2h.src" onMouseOut="if(MSFPhover) document['MSFPnav2'].src=MSFPnav2n.src"><img src="image/btn_admin_log.jpg" border='0' name="MSFPnav2"> </a></span></div></td>
 </tr>
<!--Second Button End B-->			  			   

<!--Third Button start C-->			  			  
<script language="JavaScript"><!--
if(MSFPhover) 
{ 
MSFPnav3n=MSFPpreload("image/btn_login.jpg"); 
MSFPnav3h=MSFPpreload("image/btn_login_tab.jpg");
}// --></script>
              <tr>
               <td class="sub_menu"><div align="left"> <a href="login.php" language="JavaScript" onMouseOver="if(MSFPhover) document['MSFPnav3'].src=MSFPnav3h.src" onMouseOut="if(MSFPhover) document['MSFPnav3'].src=MSFPnav3n.src"><img src="image/btn_login.jpg" border="0" name="MSFPnav3"></a></div> </td>
</tr>

*/

