
function Show(url, name, width, height,resize)
{
	if (resize==true) {
		
	if (width > 800) width=800;
	if (height>600) height=600;
	}
	
	
	var bar="no";
	var loc="no";
	var scrol = "yes";
	var res = "yes";
	window.open(url,name,'width='+width+',height='+height+',toolbar='+bar+',location='+loc+',scrollbars='+scrol+',resize='+res);
}