function popup(url, title, w, h) {
	h = (h == '0') ? '315' : h;
	w = (w =='0') ? '415' : w;
	window.open(url,title,'height=' + h + ',width=' + w + ',resizable=yes,toolbars=no,scrollbars=yes');
}

