function listacarrito_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = '#FFFFFF';
	} 
} 

function listacarrito_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
		src.style.backgroundColor = color_ori;
	} 
}

function cursor_manita_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
	} 
} 

function cursor_manita_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
	} 
}

function vistasFicha_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = '#990000';
	} 
} 

function vistasFicha_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
		src.style.backgroundColor = color_ori;
	} 
}

var win= null;
function NewWindow(mypage,myname,w,h,scroll){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  var settings  ='height='+h+',';
      settings +='width='+w+',';
      settings +='top='+wint+',';
      settings +='left='+winl+',';
      settings +='scrollbars='+scroll+',';
      settings +='resizable=yes';
  win=window.open(mypage,myname,settings);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function copyright(e) {
	if (event.button == 2){
		alert('MopecŪ 2007 S.A. Artesania')
	}
}
//document.onmousedown=copyright
