//anchor




if(findFrame('icattTopFrame') && findFrame('mainFrame')) {
	//nothing;
	var AncPosTop = top.location.href.indexOf('#');
	var AncPosThis = document.location.href.indexOf('#');
	var LocationThis = document.location.href;
	if (AncPosThis != '-1'){
		LocationThis = document.location.href.substring(0,AncPosThis);
	}
	
	if(AncPosTop != '-1' && -1 == AncPosThis){
		var Anc = "#"+top.location.href.substring(AncPosTop+1);
//		alert(findFrame('mainFrame').parent.document.getElementById('mainFrame').src);
		findFrame('mainFrame').parent.document.getElementById('mainFrame').src = LocationThis + '&een=1' + Anc;
	}
	//scrollTo(top.location.href.substring(AncPosTop+1));
}
