/*
|---------------------------------------------------------------------------------------------------------------------| 
   Nombre del Archivo:	js_rolbackcolorbutton.js
|----------------------------------------------------------------------------------------------------------------------| 
*/


<!--
	//Specify optional button target: "_new" for new window, or name of FRAME target (ie "myframe")
	var buttontarget=""
	
	function change(e, color){
		var el=window.event? event.srcElement: e.target
		if (el.tagName=="INPUT"&&el.type=="button")
			el.style.backgroundColor=color
	}
	
	function fx_aperturaventana(url, target){
		window.open(url, target)
/*
		if (buttontarget=="")
			window.location=url
		else if (buttontarget=="_new")
			window.open(url)
		else
			parent[buttontarget].location=url
*/
}
//-->

