function  Search()
{
	if(document.search_form.search.value=="Enter key words"||document.search_form.search.value=="")
		{
		  alert("Please enter key words");
		}
	else
		{
		  window.location="<?php echo $addon_path; ?>index/search_result/index.php?search="+escape(document.search_form.search.value);
		}

}


function showPopUp(p,w,h) {
        var url = p;
        var hWnd = window.open(url,"Image","width=" + w + ",height=" + h + ",resizable=no,scrollbars=yes");
}