function nonFormCSS() {
	var headerHeight = document.getElementById("headernoform").offsetHeight;
	var copyHeight = document.getElementById("pagecopynoform").offsetHeight;
	document.getElementById("pagecopynoform").style.top=headerHeight+"px";
	document.getElementById("mainBoxnoform").style.height=copyHeight+headerHeight+"px";
	document.getElementById("footer").style.top=headerHeight+copyHeight+"px";
}




function openWin(page) {
    var win_width = 540;
    var win_height = 530;
    var options = "scrollbars=yes, width=" + win_width + ", height=" + win_height;
    var win = window.open(page, 'MyWin', options);
    if (window.focus) { win.focus() } 
}




function doProcessing() {
  document.getElementById('button').className = 'thide'; 	
  document.getElementById('processing').className = 'tshow';
}




function setCountry( form ) {
    form.CN.value='US';
}


