function onLoad(iframe_id, id){
	var iframe = document.getElementById(iframe_id);
	var iframe_doc = (iframe.contentWindow) ? iframe.contentWindow.document : iframe.document;
	if(iframe_doc){
		iframe_doc.getElementById(id).className = 'active';
	}
}
