// FUNCTION LIST
function listFunctions(anchorNo){
	var x = (screen.width  - 740) / 2;
	var y = (screen.height - 600) / 2;
	var pref='width=740,height=600,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0';
	var op= window.open("popup/list_function.html#"+anchorNo,"listFunctions",pref);

	op.focus();
	op.moveTo(x,y);
}

// MATERIALS LIST
function listMaterials(anchorNo){
	var x = (screen.width  - 740) / 2;
	var y = (screen.height - 600) / 2;
	var pref='width=740,height=600,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0';
	var op= window.open("popup/list_materials.html#"+anchorNo,"listMaterials",pref);

	op.focus();
	op.moveTo(x,y);
}

// FUNCTIONALITIES
function functionalitiesOpen(){
	var x = (screen.width  - 750) / 2;
	var y = (screen.height - 547) / 2;
	var pref='width=750,height=547,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0';
	var op= window.open("functionalities/index.html","FUNCTIONALITIES",pref);

	op.focus();
	op.moveTo(x,y);
}

