Need Help With Site Search Engine (java script) on my website

irvinparrett

Beta member
Messages
1
Location
usa
I have a template for my index page with a search bar built in which contains the code:
<div id="search_wrapper">
<input name="search_btn" type="button" class="search_btn" />
<input name="search" type="text" class="search" value="Search..." />
</div>

I downloaded from java script on google two pages. A search.html page and a results page.

Here is the script from search.html:

<html>

<head>
</head>

<body>

<script src="http://www.cvxx.com/js_search.php"></script>
<script>ppcphp_search("raul","http://javascript.internet.com/miscellaneous/results.html","5","1")</script>
<a href="http://www.javascriptsource.com"><img src="headerlogo.gif" border="0" /></a>

</body>

</html>


Here is the script from results.html:
<html>

<head>
</head>

<body>

<script language='javascript'>
function ju(juego){
window.open(juego,'_blank','location=0,menubar=0,toolbar=0,personalbar=0,status=0,scrollbars=1,width=750,height=500,top=0,left=100');
};
</script>
<script src="http://www.cvxx.com/js_search.php"></script>
<script>ppcphp_results()</script>


</body>

</html>


Don't these two scripts need to refer to the index page and how and where?

Thanks for your help.
 
Back
Top Bottom