	var Target1="http://wood2.homeip.net/tv/list.asp?date0="
	var Target2="http://wood2.homeip.net/theDay/list.asp?date0="
	var Target3="http://websv1/theDayLocal/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="
//	var Target3="http://ws7/theDayLocal/list.asp?date0="


function openWindow(url){
	window.showModalDialog(url,"","dialogheight:370px;dialogwidth:600px");

}

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.getFullYear()+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;
}

function retDayPlusLocal(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(Target3 + tempM + tempD);
	return false;
}


