///////////////////////////////////////////
/****** Author: Miguel Angel Perez *******/
/////////////////////////////////////////


var LaVentana = null;
function ventmap(imag,tamx,tamy,titulo,imprimir){

if (!LaVentana || LaVentana.closed ){

LaVentana=window.open('','','width='+tamx+',height='+tamy);
if (imprimir == 1){
 LaVentana.document.write("<html><head><title>"+titulo+"</title></head><body  leftmargin=0 topmargin=0 marginheight=0 marginwidth=3 bgcolor='#CECE9C' BACKGROUND='HTTP://www.interiberica.com/muebleseurodiseno/catalogo/images/cargandoimagen.gif' onload='javascript:window.print();'><img src="+imag+"></body></html>");}
else{
 LaVentana.document.write("<html><head><title>"+titulo+"</title></head><body  leftmargin=0 topmargin=0 marginheight=0 marginwidth=3 bgcolor='#CECE9C' BACKGROUND='HTTP://www.interiberica.com/muebleseurodiseno/catalogo/images/cargandoimagen.gif'><img src="+imag+"></body></html>");}
LaVentana.document.close();
}
else{

LaVentana.close();
LaVentana=window.open('','','width='+tamx+',height='+tamy);
if (imprimir == 1){
LaVentana.document.write("<html><head><title>"+titulo+"</title></head><body  leftmargin=0 topmargin=0 marginheight=0 marginwidth=3 bgcolor='#CECE9C' BACKGROUND='HTTP://www.interiberica.com/muebleseurodiseno/catalogo/images/cargandoimagen.gif' onload='javascript:window.print();'><img src="+imag+"></body></html>");}
else{
LaVentana.document.write("<html><head><title>"+titulo+"</title></head><body  leftmargin=0 topmargin=0 marginheight=0 marginwidth=3 bgcolor='#CECE9C' BACKGROUND='HTTP://www.interiberica.com/muebleseurodiseno/catalogo/images/cargandoimagen.gif'><img src="+imag+"></body></html>");}
LaVentana.document.close();
}

}