function resizeAppContainer(height){
     try{
        	document.getElementById("appContainer").setAttribute("height", height);
	}catch(e){}
}

function actualizarIFrame(){
 document.getElementById("appFrame").height=window.frames['service-frame'].document.body.clientHeight+100;
if (self.pageYOffset){
	window.scroll(0, 0);
}else{
	window.scrollTo(0, 0);
}


}

