// JavaScript Document

//check if anchor name passed
var ds = location.hash.substring(1);

function showAnchor (ds){
	body.location = "body.html#"+ds;
}

function toSection(sn, anc){
	if (anc){
		this.location = "../"+sn+"/frameset.html#"+anc;
	}else{
		this.location = "../"+sn+"/frameset.html";
	}
}


function popWindow(where) {	
	var popWin = window.open(where , "popWin", "height=600,width=800,scrollbars=yes");
}


