function openWin(url,name,w,h,scroll,location,menubar,toolbar,resize) {

	    var att = 'width='+ w +',height='+ h +',scrollbars='+ scroll +',location='+location+'menubar='+menubar+',toolbar='+toolbar+',resizable='+ resize;
	    window.open(url,name,att);
}
