<!-- ;
var newwindow = ''
var wheight = 0
var wwidth = 0
function popup(url , title, iwidth, iheight) {
if (wheight!=iheight || wwidth!=iwidth){tidy()};
if (newwindow.location && !newwindow.closed && wwidth==iwidth && wheight==iheight) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ 
pwidth=iwidth;
pheight=iheight;
LeftPosition = (screen.width-pwidth)/2;
TopPosition = (screen.height-pheight)/2;
newwindow=window.open('','','width=' + pwidth + ',height=' + pheight + 'top=' + TopPosition + ',left=' + LeftPosition + ',resizable=0');
wheight=iheight;
wwidth=iwidth;
}
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body LEFTMARGIN=0 TOPMARGIN=3 MARGINWIDTH=0 MARGINHEIGHT=0 bgcolor=\"#FFFFFF\"> <center>');
newwindow.document.writeln('<img src=' + url + '>');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}

function popupflash(url , title, iwidth, iheight) {
if (wheight!=iheight || wwidth!=iwidth){tidy()};
if (newwindow.location && !newwindow.closed && wwidth==iwidth && wheight==iheight) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ 
pwidth=iwidth;
pheight=iheight;
LeftPosition = (screen.width-pwidth)/2;
TopPosition = (screen.height-pheight)/2;
newwindow=window.open('','','width=' + pwidth + ',height=' + pheight + 'top=' + TopPosition + ',left=' + LeftPosition + ',resizable=0');
wheight=iheight;
wwidth=iwidth;
}
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body LEFTMARGIN=0 TOPMARGIN=3 MARGINWIDTH=0 MARGINHEIGHT=0 bgcolor=\"#FFFFFF\"> <center>');
newwindow.document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+pwidth+'" height="'+pheight+'" id="sitio" align="middle">');
newwindow.document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
newwindow.document.writeln('<param name="movie" value="'+ url +'" />');
newwindow.document.writeln('<param name="quality" value="high" />');
newwindow.document.writeln('<param name="bgcolor" value="#FFFFFF" />');
newwindow.document.writeln('<embed src="'+ url +'" quality="high" bgcolor="#FFFFFF" width="'+pwidth+'" height="'+pheight+'" name="sitio" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed> ');
newwindow.document.writeln('</object>');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}

function tidy() {
if (newwindow.location && !newwindow.closed) { 
   newwindow.close(); } 
}
// Original code Peter Curtis at www.pcurtis.com - Modifications to make it work with flash by Will www.ghn.com.ar -->
