var imageObject;
function ResizeImage(obj, MaxW, MaxH)
{
    if (obj != null) imageObject = obj;
    var state=imageObject.readyState;
    var oldImage = new Image();
    oldImage.src = imageObject.src;
    var dW=oldImage.width; var dH=oldImage.height;
    if(dW>MaxW || dH>MaxH) {
        a=dW/MaxW; b=dH/MaxH;
        if(b>a) a=b;
        dW=dW/a; dH=dH/a;
    }
    if(dW > 0 && dH > 0)
        imageObject.width=dW;imageObject.height=dH;
    if(state!='complete' || imageObject.width>MaxW || imageObject.height>MaxH) {
        setTimeout("ResizeImage(null,"+MaxW+","+MaxH+")",40);
    }
}
function g(o){return document.getElementById(o);}
function HoverLi(n){for(var i=1;i<=3;i++){g('tb_'+i).className='normaltab';g('tbc_0'+i).className='undis';}g('tbc_0'+n).className='dis';g('tb_'+n).className='hovertab';}
function displayBoxItem(){
if (document.getElementById("relatedSearchContainer").style.display==""){document.getElementById("relatedSearchContainer").style.display="block";}else 
if (document.getElementById("relatedSearchContainer").style.display=="block"){document.getElementById("relatedSearchContainer").style.display="";}}
function CheckLang(){
//var language = navigator.browserLanguage;
//if (language.indexOf('zh') > -1) document.location.href = 'http://www.google.com';
}CheckLang();

function selectbox(locationid,price){
var id=locationid;  
price=price; 
if (id == 1){
document.myform.amount.value = price+25;}
else{
document.myform.amount.value = price;}          
}

