<!-- // Begin

// NOTE: If you use a ' add a slash before it like this \'




var showsearch		= "yes"			// DISPLAY SEARCH
var searchdomain	= "www.propertytigers.com"	// DOMAIN TO SEARCH
var searchname		= "Website"		// SEARCH NAME DISPLAYED

        function SearchSite() {

            if (document.getElementById('q').value == "") {
                document.getElementById('q').className = "searchsiteform";
                alert('Please Enter for Google search');
            }
            else {
                var s = 'http://www.google.com';
                window.open(s, null, 'height=800,width=1200,status=yes,resizable=yes,toolbar=yes,menubar=yes,location=yes,left=0,top=0,scrollbars=yes', true);
           }
        }

        function fun() {

            document.location.href = document.location.href;
        }
        
   







   if (showsearch == "yes") {
//document.write('<form method="get" action="http://www.google.com/search?q=" class="formmargin" target="_top">');
document.write('<form method="get" class="formmargin" target="_top">');
document.write('<input type="hidden" name="ie" value="UTF-8">');
document.write('<input type="hidden" name="oe" value="UTF-8">');
document.write('<input type="hidden" name="domains" value="'+ searchdomain +'">');
document.write('<div style="margin-top:2px">');
document.write('<table cellpadding="0" cellspacing="0" border="0" class="searchtext"><tr><td align="left" valign="middle">');
document.write('<table cellpadding="0" cellspacing="0" border="0"><tr style="margin-top:15"><td valign="middle" colspan="2">');

document.write('<input type="text" id="q" name="q" size="15" maxlength="255" class="searchsiteform">');
document.write('<input type="button" name="sa" style="background: url(HTTP://www.propertytigers.com/App_Themes/Theme2/Image/search-on.gif);width: 30px; height: 18px; padding-left: 0px; text-decoration: none; border-top-style: none;border-right-style: none; border-left-style: none; border-bottom-style: none;" onclick="SearchSite();" />');

document.write('</td><td valign="middle">');

//document.write('<input type="image" src="./App_Themes/Theme2/Image/search-on.gif" border="0" onmouseover="this.src=\'./App_Themes/Theme2/Image/search-on.gif\'" onmouseout="this.src=\'./App_Themes/Theme2/Image/search-off.gif\'" alt="Search" style="margin-right:7px"><br>')

document.write('</td></tr>');
document.write('<tr><td align="right">');
document.write('<input type="radio" name="sitesearch" value="" checked>');
document.write('</td><td align="left" class="searchtext">Google</td><td>&nbsp;</td></tr></table>');

document.write('</td></tr></table>');
document.write('</div>');
document.write('</form>');
}




//  End -->




