<!-- Begin

function openwin(pagebody,w,h){
win = window.open(pagebody, 'aa', 'toolbar=0, width='+w+',height='+h+',left=50,top=50');
/*win.document.write('<html>');
//win.document.close();*/
//win.document.clear();
win.focus();

}

//---------------------------------

// OPEN_WIN: Utilizada en contenido.php, homeinclude.php
function open_win(win,w_popup,h_popup) {
	var L = (screen.width-w_popup) / 2;
	var H = (screen.height-h_popup) / 2;
   pop_up = window.open(win,"Popup","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height="+h_popup+",width="+w_popup+",top="+H+",left="+L);
   pop_up.focus();
}

// End -->
