<!--
var ie = document.all ? 1 : 0
var ns = document.layers ? 1 : 0
if(ns){doc = "document."; sty = ""}
if(ie){doc = "document.all."; sty = ".style"}

var initialize = 0
var Ex, Ey, topColor, subColor, ContentInfo

if(ie){
Ex = "event.x"
Ey = "event.y"
topColor = "#ffffff"
subColor = "#ffffff"
}
if(ns){
Ex = "e.pageX"
Ey = "e.pageY"
window.captureEvents(Event.MOUSEMOVE)
window.onmousemove=overhere
topColor = "#ffffff"
subColor = "#ffffff"
}

function MoveToolTip(layerName, FromTop, FromLeft, e){
if(ie){eval(doc + layerName + sty + ".top = "  + (eval(FromTop) + document.body.scrollTop))}
if(ns){eval(doc + layerName + sty + ".top = "  +  eval(FromTop))}
eval(doc + layerName + sty + ".left = " + (eval(FromLeft) + 15))
}

function ReplaceContent(layerName)
{
  if(ie){document.all[layerName].innerHTML = ContentInfo}
  if(ns)
  {
   with(document.layers[layerName].document)
   {
   open();
   write(ContentInfo);
   close();
  }
 }
}
function Activate(){initialize=1}
function deActivate(){initialize=0}
function overhere(e)
{
  if(initialize)
  {
    MoveToolTip("ToolTip", Ey, Ex, e)
    eval(doc + "ToolTip" + sty + ".visibility = 'visible'")
  }
  else
  {
    MoveToolTip("ToolTip", 0, 0)
    eval(doc + "ToolTip" + sty + ".visibility = 'hidden'")
  }
}

function EnterContent(layerName, TTitle, TContent)
{
  ContentInfo = '<table border="0" width="" cellspacing="5" cellpadding="0" style="border: 1px dashed #999999">'+
  '<tr><td width="100%" bgcolor="">'+
  '<table border="0" width="100%" cellspacing="0" cellpadding="0">'+
  '<tr><td width="100%" bgcolor='+topColor+'>'+
  '<table border="0" width="90%" cellspacing="2" cellpadding="0" align="center">'+
  '<tr><td width="100%">'+
  '<b>'+TTitle+'</b>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '<tr><td width="100%" bgcolor='+subColor+'>'+
  '<table border="0" width="90%" cellpadding="2" cellspacing="0" align="center">'+
  '<tr><td width="100%">'+
  '<center><img src="'+TContent+'"></center>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '</table>';
 ReplaceContent(layerName)
}

function EnterContentUser(layerName, TTitle, TContent)
{
  ContentInfo = '<table bgcolor= "#fafafa" border="0" width="" cellspacing="5" cellpadding="0" style="border: 1px dashed #999999">'+
  '<tr><td width="100%" bgcolor="">'+
  '<table border="0" width="100%" cellspacing="0" cellpadding="0">'+
  '<tr><td width="100%" bgcolor='+topColor+'>'+
  '<table border="0" width="90%" cellspacing="2" cellpadding="0" align="center">'+
  '<tr><td width="100%">'+
  '<b>'+TTitle+'</b>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '<tr><td width="100%" bgcolor='+subColor+'>'+
  '<table border="0" width="90%" cellpadding="2" cellspacing="0" align="center">'+
  '<tr><td width="100%">'+
  '<center>'+TContent+'</center>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '</table>';
 ReplaceContent(layerName)
}

function EnterContent2(layerName, TTitle, TContent)
{
  ContentInfo = '<table bgcolor= "#fafafa" border="0" width="" cellspacing="5" cellpadding="0" style="border: 1px dashed #999999">'+
  '<tr><td width="100%" bgcolor="">'+
  '<table border="0" width="100%" cellspacing="0" cellpadding="0">'+
  '<tr><td width="100%" bgcolor='+topColor+'>'+
  '<table border="0" width="90%" cellspacing="2" cellpadding="0" align="center">'+
  '<tr><td width="100%">'+
  '<b>'+TTitle+'</b>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '<tr><td width="100%" bgcolor='+subColor+'>'+
  '<table border="0" width="90%" cellpadding="2" cellspacing="0" align="center">'+
  '<tr><td width="100%">'+
  '<center><img src="'+TContent+'"></center>'+
  '<font style="font-size: 9px;">Click para volver a aņadir este producto con otro color, talla y cantidad</font>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '</table>'+
  '</td></tr>'+
  '</table>';
 ReplaceContent(layerName)
}
//-->
