/* © webuild 2008 //

// para mostrar/esconder detalhe do menu auxiliar
function toggle_visibility(id) {
var e = document.getElementById(id);
	if(e.style.display == 'block') e.style.display = 'none';
	else
	e.style.display = 'block';
}

/* rreis */
/* Popup Window */
function resetButton() { document.forms[0].reset(); }

/*rad window pop up*/	
function popGaleriaWindow(url) {
	window.radopen(url, "popGaleria"); }

function GetRadWindow(){
    var oWindow = null;
    if (window.radWindow) oWindow = window.radWindow;
    else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
    return oWindow;
} 

function OnClientClose(oWindow) { 
	oWindow.Close();
	oWindow.BrowserWindow.location.reload();
}

function apagaTexto(object,texto){
	if (object.value == texto){
		object.value='';
	}
}
function escreveTexto(object,texto){
	if (object.value == ''){
		object.value=texto;
	}
}
