
function ResizeImage(obj, MaxW, MaxH)
{
	var imageObject;
    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 selectbox(locationid,price){
	var id=locationid;  
    price=price; 
    if (id == 1){
		document.myform.amount.value = price+25;}
	else{
		document.myform.amount.value = price;}          
}
function chkfield(){
	if(window.document.form1.S_Name.value==''){window.alert("please input your name!");
                window.document.form1.S_Name.focus();
		return false;}
	if(window.document.form1.S_Country.value==''){window.alert("please input your Country!");
                window.document.form1.S_Country.focus();
		return false;}
	if(window.document.form1.S_City.value==''){window.alert("please input your City!");
                window.document.form1.S_City.focus();
		return false;}
	if(window.document.form1.S_address.value==''){window.alert("please input your Address!");
                window.document.form1.S_address.focus();
		return false;}
	if(window.document.form1.S_PostCode.value==''){window.alert("please input your PostCode!");
                window.document.form1.S_PostCode.focus();
		return false;}
			if(window.document.form1.S_Email.value==''){window.alert("please input your Email!");
                window.document.form1.S_Email.focus();
		return false}
	if(window.document.form1.S_Telefax.value==''){window.alert("please input your Telefax!");
                window.document.form1.S_Telefax.focus();
		return false;}
	if(window.document.form1.S_Telephone.value==''){window.alert("please input your Telephone!");
                window.document.form1.S_Telephone.focus();
		return false;}
	if(window.document.form1.S_Mobile.value==''){window.alert("please input your Mobile Telephone!");
                window.document.form1.S_Mobile.focus();
		return false;}
	document.getElementById("SubmitOrder").value='Order is in dealing, Please wait...';
	document.getElementById("SubmitOrder").disabled = true;		
	return true;	
}
