<script type="text/javascript">
function openwindow( url, width, height ){
var rand = Math.floor(Math.random() * 1000000);
window.open( url,"mywindow" + rand ,"menubar=0,resizable=1,width="+width+",height="+height);
}
function openWindow( url, width, height ){
openwindow( url, width, height );
}
</script> |