mav1, что будет выводится на экран?
<script type="text/javascript">
function openwindow( url, width, height ){
var rand = Math.floor(Math.random() * 1000000);
var url = encodeURIComponent(url);
var url1 = "http://site.ru/hello.php?mavpa=" + url;
var a = 200;
alert(width);
var width1 = width + a;
alert(width1);
alert(height);
var height1 = height + a;
alert(height1);
window.open(url1,"krechet" + rand ,"menubar=0,resizable=1,width="+width1+",height="+height1);
}
function openWindow( url, width, height ){
openwindow( url, width, height );
}
</script>