// Scripts

// auto maximize window
function maximize_win() {
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}

// opciones flash
function indeso_menu(){
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="745" height="110">');
    document.write('<param name="movie" value="menu.swf">');
    document.write('<param name="quality" value="high">');
    document.write('<embed src="menu.swf" width="745" height="110" quality="high" allowScriptAccess="sameDomain" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');			
    document.write('</object>');
}
function indeso_images(){
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="745" height="169">');
    document.write('<param name="movie" value="images.swf">');
    document.write('<param name="quality" value="high">');
    document.write('<embed src="images.swf" width="745" height="169" quality="high" allowScriptAccess="sameDomain" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');			
    document.write('</object>');
}

// ImagePreloader
function preload_images() {
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=preload_images.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

//SwapImage
function image_restore() {
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

//
function find_object(n, d) {
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=find_object(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

//SwapImageRestore
function swap_image() {
  var i,j=0,x,a=swap_image.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=find_object(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

// Show / Hide Sections
function doSection (secNum){
if (secNum.style.display=="none"){secNum.style.display=""}
else{secNum.style.display=""}
}
function noSection (secNum){
if (secNum.style.display==""){secNum.style.display="none"}
else{secNum.style.display="none"}
}

//End