function popWin(url,name,w,h,scrl,rsz) {
var winProps = "width=" + w + ",height=" + h + ",toolbar=0,status=1,location=0,menubar=0,scrollbars="+scrl+",resize="+rsz ;
//alert(winProps);
popwin = window.open (url, name, winProps);
}