/***********
add header AL
popup windows 
************/

function popup(url,name,w,h,scr){
	var scrollsetting = scr==true ? "yes" : "no";
	//var features = 'width='+w+',height='+h+',scroll='+scrollsetting
	var features = 'width='+w+',height='+h;
	window.open(url,name,features);
}
