function link_open(il) { 
	linkWindow = window.open('http://'+il,'link1','width=800,height=600,left=10,top=10,toolbar=1,directories=1,menubar=1,status=1,location=1,scrollbars=1,resizable=1');
}

function lpic_open(pic,i1) {
	picid = pic;
	ori = i1;
  if(ori=='1') {
		picWindow = window.open('','large_1','width=640,height=480,left=10,top=10,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=auto,resizable=1');
  } else {
    if(window.screen.height<='600') {
		picWindow = window.open('','large_2','width=496,height=500,left=10,top=10,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=1,resizable=1');
    } else {
		picWindow = window.open('','large_2','width=480,height=640,left=10,top=10,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=auto,resizable=1');
    }
  }
//	alert('Hello');
//	picWindow.window.moveTo(10,10);
	picWindow.document.writeln('<HTML><HEAD>');
	picWindow.document.writeln('<TITLE>Company Canario - archívum - '+picid+'</TITLE>');
	picWindow.document.writeln('</HEAD><BODY topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>');
	picWindow.document.writeln('<IMG SRC="arc/4/'+picid+'.jpg">');
	picWindow.document.writeln('</BODY></HTML>');
	picWindow.document.close();
	picWindow.window.focus();
}

function vid_open(vidsrc) {
//	vidid = vid;
//	vidsrc = 'mov/'+vidid+'.MPG'
//	vidWindow.window.moveTo(10,10);
	vidWindow = window.open('','video1','width=320,height=310,left=10,top=10,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=auto,resizable=1');
	vidWindow.document.writeln('<HTML><HEAD>');
	vidWindow.document.writeln('<TITLE>Company Canario - video archívum - '+vidsrc+'</TITLE>');

	vidWindow.document.writeln('</HEAD><BODY topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>');
//	vidWindow.document.writeln('<EMBED SRC="'+vidsrc+'" width="320" height="250" autostart="true">');

	vidWindow.document.writeln('<OBJECT classid="clsid:05589FA1-C356-11CE-BF01-00AA0055595A">');
	vidWindow.document.writeln('<PARAM NAME="FileName" VALUE="'+vidsrc+'">');
	vidWindow.document.writeln('<PARAM NAME="AutoStart" VALUE="true">');
	vidWindow.document.writeln('<embed src="'+vidsrc+'" autostart="true"></embed>');
	vidWindow.document.writeln('</OBJECT>');

	vidWindow.document.writeln('</BODY></HTML>');
	vidWindow.document.close();
	vidWindow.window.focus();
}

function mov_open(vid,i1) {
	vidid = vid;
	ori = i1;
		vidWindow = window.open(vidid,'video','width=420,height=340,left=10,top=10,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=auto,resizable=1');
	vidWindow.document.close();
	vidWindow.window.focus();
}

function opa_pic(id_s,opa) { 
  if (document.all) {
	eval('document.all.'+id_s+'.style.filter="alpha(opacity='+opa+')"');
  }
}

