function pre(uRl){
	pop = window.open(uRl, "popup", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width=500,height=300,screenX=100,screenY=100");
}
function currency_check(currency_str){
	if(document.forms['amend_form'].elements['new_destination'].value != 'United Kingdom'){
		alert(currency_str);
	}
}
function currency_change(curr_value){
	document.forms['amend_form'].curr.value = curr_value;
	document.forms['amend_form'].submit();
}
function del_item(NuM){
	document.forms['amend_form'].elements[NuM].value = 0;
	document.forms['amend_form'].submit();
}
function oem_check(msg){
	if( document.forms['amend_form'].oem_check.checked == true ){
		document.forms['confirm_form'].submit();
	}else{
		alert(msg);
	}
}
function form_check(oem, oem_msg, terms_msg){
	if( oem == '1' && document.forms['confirm_form'].oem_check.checked == false && document.forms['confirm_form'].terms_check.checked == false ){
		alert(oem_msg + '\n' + terms_msg);
		document.getElementById('terms_agree_container').style.backgroundColor="#ee0000";
		return false;
	}else if( oem == '1' && document.forms['confirm_form'].oem_check.checked == false && document.forms['confirm_form'].terms_check.checked == true ){
		alert(oem_msg);
		document.getElementById('terms_agree_container').style.backgroundColor="#ee0000";
		return false;
	}else if( document.forms['confirm_form'].terms_check.checked == false ){
		alert(terms_msg);
		document.getElementById('terms_agree_container').style.backgroundColor="#ee0000";
		return false;
	}else if( document.forms['confirm_form'].terms_check.checked == true ){
		return true;
// 		document.forms[3].submit();
	}
}
