// JavaScript Document
function backward(){
	//alert(photos.length)
							if (which>0){												
								which--												
								document.images.photoslider.src=photos[which]
							}else{//alert('Đang xem hình cuối cùng!')
								//if (which<photos.length-1){
								which++
								document.images.photoslider.src=photos[which]
							//}
	}
}

function forward(){
	if (which<photos.length-1){
	which++
	document.images.photoslider.src=photos[which]
	}
	else //window.status='End of gallery'
		
		alert('Đang xem hình cuối cùng!')
	
		
		//document.images.photoslider.src=photos[which]
}
// function 
function vietnoidung(){
	if(document.all.sub_nhiemvu.style.display == "none"){
		document.all.sub_nhiemvu.style.display = "block";
		document.all.nhanxet.style.display = "none";
	}
	else{
		document.all.sub_nhiemvu.style.display = "none";
	}
	}
//kiem tra nhap cua form
function Submit_onclick() {
	if(document.getElementById("txtTitle").value==""){
		alert("Vui lòng nhập tiêu đề")
		document.getElementById("txtTitle").focus()
		return false;
	}
	if(document.getElementById("txtBody").value==""){
		alert("Vui lòng nhập nội dung")
		document.getElementById("txtBody").focus()
		return false;
	}
	var email=document.getElementById("txtEmail").value
	if(email!="" && email.indexOf("@")>0 && email.indexOf("@")+1<email.lastIndexOf(".")){
	//nhanxet.submit();
	//nhaxet.Submit.disable=true;
		//window.location.href = "Specification.aspx?0&State=ChucMung&modelid="+ModelID+"&tTitle="+document.getElementById("txtTitle").value+"&Body="+document.getElementById("txtBody").value+"&Pros="+document.getElementById("txtPros").value+"&Cons="+document.getElementById("txtCons").value+"&Rate="+document.getElementById("txtRating").value+"&Email="+document.getElementById("txtEmail").value + "#nhanxet";
	}else{
		alert("Vui lòng nhập địa chỉ mail")
		document.getElementById("txtEmail").focus()
		return false;		
	}
	if(document.getElementById("code").value==""){
		alert("Vui lòng nhập mã bảo vệ")
		document.getElementById("code").focus()
		return false;
	}	
	
}
function favoris() 
        {
            if ( navigator.appName != 'Microsoft Internet Explorer' )
            { 
                window.sidebar.addPanel("SaigonSearch","http://www.saigonsearch.net",""); 
            }
            else 
            { 
                window.external.AddFavorite("http://www.saigonsearch.net","SaigonSearch"); 
            } 
       }
