function newwin(url,width,height){
	if (url != ""){
		popup=window.open(url,'popup','width=' + width + ',height=' + height +',resizable=yes,scrollbars=yes');
		popup.focus();
	}
}

