function openwin(url,w,h) {
	var win = window.open(url,'','height='+h+',width='+w+',scrollbars=auto,location=no,status=no,resizable=no,menu=no,toolbar=no');
	return (typeof(win)=='object') ? false:true;
}
