﻿function addBookmark(title,url) {
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}
function setHomepage(url)
{
 if (document.all)
    {
        document.body.style.behavior='url(#default#homepage)';
  document.body.setHomePage(url);
 
    }
    else if (window.sidebar)
    {
    if(window.netscape)
    {
         try
   {  
            netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");  
         }  
         catch (e)  
         {  
    alert( "该操作被浏览器拒绝，如果想启用该功能，请在地址栏内输入 about:config,然后将项 signed.applets.codebase_principal_support 值该为true" );  
         }
    } 
    var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
    prefs.setCharPref('browser.startup.homepage',url);
 }
}

 function searchProduct(tipWord){
	 var keyWord;
	 keyWord=$("#keyWordContent").val();
    //keyWord=document.getElementById("keyWordContent");
	if(keyWord==''){
		
		alert(tipWord);
		}
		else{
	
			window.location='product.asp?searchKeyWord='+keyWord;
			}
		 
		 
	 }
	 
	 $(document).ready(function(msg){
		
		if(!$("#ImgList") || !$("#showImg")){
			return;
		}
		
		if($("#ImgList").find("img").length > 0){
			for(var i=0; i<$("#ImgList").find("img").length; i++){
				$("#ImgList").find("img").eq(i).click(function(){
															   		for(var i=0; i<$("#ImgList").find("a").length; i++){
																		$("#ImgList").find("a").eq(i).attr("class","pro_productshowb");
																	}
															   		
															   		$("#showImg").attr("src",this.src);
																	$("#showImg").parent().attr("href",this.src.replace("_x",""));
																	this.parentNode.className = "pro_productshowc";
															   });
			}
		}
		
	});
