var Target1="http://wood2.homeip.net/tv/list.asp?date0=" var Target2="http://wood2.homeip.net/theDay/list.asp?date0=" // var Target1="http://hoping.dnsalias.com:100/web/wood/tv/list.asp?date0=" // var Target2="http://hoping.dnsalias.com:100/web/wood/theDay/list.asp?date0=" // var Target1="http://ws7/tv/list.asp?date0=" // var Target2="http://ws7/theDay/list.asp?date0=" function openWindow(url){ window.showModalDialog(url,"","dialogheight:400px;dialogwidth:400px"); } function retTodayPlusURL(iplus){ var objDate; var tempM=""; var tempD=""; objDate=new Date(); objDate.setDate(objDate.getDate()+iplus); tempM="0" + (objDate.getMonth()+1); tempD="0" + objDate.getDate(); if(tempM.length==3) tempM=tempM.substring(1,3); if(tempD.length==3) tempD=tempD.substring(1,3); openWindow(Target1 + objDate.getYear()+tempM + tempD); return false; } function retDayPlusURL(iplus){ var objDate; var tempM=""; var tempD=""; objDate=new Date(); objDate.setDate(objDate.getDate()+iplus); tempM="0" + (objDate.getMonth()+1); tempD="0" + objDate.getDate(); if(tempM.length==3) tempM=tempM.substring(1,3); if(tempD.length==3) tempD=tempD.substring(1,3); openWindow(Target2 + tempM + tempD); return false; }