function OpenWindow(url,intWidth,intHeight) {
      window.open(url, "_blank", "width="+intWidth+",height="+intHeight+",resizable=1,scrollbars=1") ;
} 
function accordion(){
	var style = document.getElementById('pos_terminal').style.display;
	if(style == "none"){
		document.getElementById('pos_terminal').style.display = "block";
	}else{
		document.getElementById('pos_terminal').style.display = "none";
	}
}
