function WindowOpen(url,width,height){//alert(height);//target = (target) ? target : '_blank';size   = (width)  ? ',width=' + width : '';size  += (width && height) ? ',height=' + height : '';
var win = window.open(url,"_blank","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes" + size);
win.focus();
}

