// JavaScript Document
function Start(page) {
  OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,resizable=yes,location=no,scrollbars=no,resize=yes,width=550,height=350,top=0,left=0");
}

function Start2(page) {
  OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,resizable=yes,location=no,scrollbars=no,resize=yes,width=750,height=500,top=0,left=0");
}
function StartGraph(page) {
  OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,resizable=yes,location=no,scrollbars=no,resize=yes,width=880,height=600,top=0,left=0");
}
function StartTable(page) {
  OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,resizable=yes,location=no,scrollbars=no,resize=yes,width=690,height=450,top=0,left=0");
}

function StartAdjust(page,width,height,scrolls) {
  OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,resizable=yes,location=no,scrollbars="+scrolls+",resize=yes,width="+width+",height="+height+",top=0,left=0");
}

function changeIDsInSitemap(){
	y=document.getElementById('siteMap_page').getElementsByTagName("a"); 
		var i;
		for (i=0;i<y.length;i++)
		{
		y[i].id=y[i].id+"_"+i
		}
	
}
