function OpenWindow() {
open('http://www.uma.pe','newwindow')
}

function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
		thefield.value = ""
}

/* Funciones utilizadas en el PanelCXP */
/* Abrir ventana */
function ayudawebPanelCXP(url){ 
	window.open(url, 'ayudaweb', 'location=no,toolbar=no,menubar=no,directories=no,status=yes,resizable=yes,scrollbars=yes,height=400,width=450,left=100,top=70', false);
}

/* Abrir ventana y centrar*/
function ayudawebPanelCXPcentrar(url,winName,features, myWidth, myHeight, isCenter) {
if(window.screen)if(isCenter)if(isCenter=="true"){
var myLeft = (screen.width-myWidth)/2;
var myTop = (screen.height-myHeight)/2;
features+=(features!='')?',':'';
features+=',left='+myLeft+',top='+myTop;
}
window.open(url,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}


/* <A href="javascript:;" onClick="OpenBrWindow('test.html','Test','','300','300','true')">
ver el ejemplo
</a> */
