function popwin(url,name){
	var features='width=600,height=543,scrollbars=1 resizable=true';
	window.open(url,name,features);
	}
function popmore(url,name){
	var features='width=600,height=400,scrollbars=1 resizable=true';
	window.open(url,name,features);
	}
function noscroll(url,name){
	var features='width=800,height=600,fullscreen=no,status=yes,location=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,scrollbars=no';	
		window.open(url,name,features);
}
