// JavaScript Document

function report(zurl,h)
{
pub2 = window.open('close.html', "Reportage2", "left=150,top=100,width=393,height="+h+"");
url=zurl;
width= 393;
height= h;
propFen = "left=150,top=100,width="+width+",height="+h+"";
pub = window.open(url, "Reportage1", propFen);
pub.focus();
}

function report2(zurl,h)
{
pub = window.open('close.html', "Reportage1", "left=150,top=100,width=393,height="+h+"");
url=zurl;
width= 393;
height= h;
propFen = "left=150,top=100,width="+width+",height="+h+"";
pub2 = window.open(url, "Reportage2", propFen);
pub2.focus();
}

