// JavaScript Document.
var xmlDoc=null;var tmpArea=null;function loadfile (var_days, to_idArea) {tmpArea=to_idArea;if (typeof window.ActiveXObject !='undefined' ) {xmlDoc=new ActiveXObject("Microsoft.XMLHTTP");xmlDoc.onreadystatechange=process;}
else {xmlDoc=new XMLHttpRequest();xmlDoc.onload=process;}
if (var_days !='' ) {xmlDoc.open( "GET", "dayscombo.php?vd="+var_days, true );xmlDoc.send( null );}
else {xmlDoc.open( "GET", file_name, true );xmlDoc.send( null );}}
function process() {if ( xmlDoc.readyState !=4 ) return;document.getElementById(tmpArea).innerHTML=xmlDoc.responseText;}
function empty() {document.getElementById(tmpArea).innerHTML='';}
